Skip to content

Commit be2c06c

Browse files
authored
Add L flag to curl download of openssl (#102)
1 parent 310e783 commit be2c06c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/openssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ OPENSSL_VER=${OPENSSL_VER:-openssl-1.1.1n}
77
OPENSSL_DST=${PWD}/${OPENSSL_VER}-install
88

99
if [[ ! -d ${OPENSSL_DST} ]]; then
10-
curl -O https://www.openssl.org/source/${OPENSSL_VER}.tar.gz
10+
curl -OL https://www.openssl.org/source/${OPENSSL_VER}.tar.gz
1111
tar xzf ${OPENSSL_VER}.tar.gz
1212
cd ${OPENSSL_VER}
1313
./Configure no-shared enable-rc5 zlib darwin64-arm64-cc --prefix=${OPENSSL_DST} --openssldir=${OPENSSL_DST}

0 commit comments

Comments
 (0)