Skip to content

Commit

Permalink
chore(build) fix a minor issue in OpenSSL download
Browse files Browse the repository at this point in the history
The download was still using the cached version but the notice log was
showing up for all `make` calls, annoying.
  • Loading branch information
thibaultcha committed Jul 30, 2023
1 parent 5b5e41c commit d700968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ download_openssl() {
mkdir -p $DIR_OPENSSL

pushd $DIR_OPENSSL
if [ ! -d "$openssl-$OPENSSL_VER" ]; then
if [ ! -d "openssl-$OPENSSL_VER" ]; then
pushd $DIR_DOWNLOAD
notice "downloading OpenSSL $OPENSSL_VER..."
download openssl-$OPENSSL_VER.tar.gz \
Expand Down

0 comments on commit d700968

Please sign in to comment.