From 94407b0606a851967b5ae30b95346c753f0f0345 Mon Sep 17 00:00:00 2001 From: sidhujus <105385029+sidhujus@users.noreply.github.com> Date: Mon, 29 Jul 2024 09:01:38 -0700 Subject: [PATCH] fix: change openssl url in build linux (#7284) * testing * changing openssl url * try with redirect * without the 0 * follow redirect from github * remove port --- installer/pyinstaller/build-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/pyinstaller/build-linux.sh b/installer/pyinstaller/build-linux.sh index 26f2e739fe..e2a3acefeb 100755 --- a/installer/pyinstaller/build-linux.sh +++ b/installer/pyinstaller/build-linux.sh @@ -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/openssl/openssl/releases/download/OpenSSL_${openssl_version//./_}/openssl-${openssl_version}.tar.gz" --output openssl.tar.gz tar xzf openssl.tar.gz cd openssl-${openssl_version} # install_sw installs OpenSSL without manual pages