From bbdce9536bb113e9cda9f312a39689043dd35450 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 17 May 2019 16:15:27 -0400 Subject: [PATCH] [ not { --- src/travis/windows-x86-before-install.sh | 2 +- src/travis/windows-x86_64-before-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/travis/windows-x86-before-install.sh b/src/travis/windows-x86-before-install.sh index 3d35895e..ae96c090 100755 --- a/src/travis/windows-x86-before-install.sh +++ b/src/travis/windows-x86-before-install.sh @@ -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..." diff --git a/src/travis/windows-x86_64-before-install.sh b/src/travis/windows-x86_64-before-install.sh index 9e12b4ae..69d03354 100755 --- a/src/travis/windows-x86_64-before-install.sh +++ b/src/travis/windows-x86_64-before-install.sh @@ -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..."