This commit is contained in:
Jay Lee
2019-05-17 16:15:27 -04:00
parent 5f0644d924
commit bbdce9536b
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ if [ ! -e $msifile ]; then
echo "Downloading $msifile..."
wget --quiet https://slproweb.com/download/$msifile
fi
if { ! -e ssl/libeay32.dll ]; then
if [ ! -e ssl/libeay32.dll ]; then
msiexec /a $msifile /qn TARGETDIR=ssl
fi
echo "OpenSSL dlls..."

View File

@@ -5,7 +5,7 @@ msifile=Win64OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.msi
if [ ! -e $msifile ]; then
wget --quiet https://slproweb.com/download/$msifile
fi
if { ! -e ssl/libeay32.dll ]; then
if [ ! -e ssl/libeay32.dll ]; then
msiexec /a $msifile /qn TARGETDIR=ssl
fi
echo "OpenSSL dlls..."