-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: change openssl url in build linux #7284
Conversation
installer/pyinstaller/build-linux.sh
Outdated
@@ -49,7 +49,7 @@ mkdir -p .build/output/openssl | |||
cd .build/output/openssl | |||
|
|||
echo "Building OpenSSL" | |||
curl "https://www.openssl.org/source/openssl-${openssl_version}.tar.gz" --output openssl.tar.gz | |||
curl -L "https://github.com:443/openssl/openssl/releases/download/OpenSSL_${openssl_version//./_}/openssl-${openssl_version}.tar.gz" --output openssl.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can probably remove the port here. Not that I'd imagine Github would open their webserver on anything other than port 443, but its not required.
Btw we could have added this flag for other places as well. Like this one; https://github.com/aws/aws-sam-cli/blob/develop/installer/pyinstaller/build-linux.sh#L52 |
Which issue(s) does this change fix?
the url now redirects to github which redirects to the release artifact, this changes the url we use to be the one before the final redirect
Why is this change necessary?
How does it address the issue?
What side effects does this change have?
Mandatory Checklist
PRs will only be reviewed after checklist is complete
make pr
passesmake update-reproducible-reqs
if dependencies were changedBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.