We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f227d9f commit 72a2025Copy full SHA for 72a2025
scripts/dependency_install_functions.sh
@@ -595,7 +595,10 @@ install_openssl() {
595
"$SUDO_CMD" apt update
596
"$SUDO_CMD" apt install -y build-essential git
597
598
- git clone https://github.com/openssl/openssl "${PROJECT_ROOT}/external/openssl"
+ wget "https://github.com/openssl/openssl/releases/download/openssl-${DATAFED_OPENSSL}/openssl-${DATAFED_OPENSSL}.tar.gz"
599
+ mkdir -p "${PROJECT_ROOT}/external/openssl"
600
+ tar -xvzf "openssl-${DATAFED_OPENSSL}.tar.gz" -C "${PROJECT_ROOT}/external/openssl" --strip-components=1
601
+
602
cd "${PROJECT_ROOT}/external/openssl"
603
./config --prefix="${DATAFED_DEPENDENCIES_INSTALL_PATH}"
604
make -j 8
0 commit comments