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 57483e1 commit 4e04832Copy full SHA for 4e04832
scripts/dependency_install_functions.sh
@@ -592,7 +592,10 @@ install_openssl() {
592
"$SUDO_CMD" apt update
593
"$SUDO_CMD" apt install -y build-essential git
594
595
- 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"
596
+ mkdir -p "${PROJECT_ROOT}/external/openssl"
597
+ tar -xvzf "openssl-${DATAFED_OPENSSL}.tar.gz" -C "${PROJECT_ROOT}/external/openssl" --strip-components=1
598
+
599
cd "${PROJECT_ROOT}/external/openssl"
600
./config --prefix="${DATAFED_DEPENDENCIES_INSTALL_PATH}"
601
make -j 8
0 commit comments