diff --git a/src/travis/windows-x86-before-install.sh b/src/travis/windows-x86-before-install.sh index d4ffa0f7..ebc2e171 100755 --- a/src/travis/windows-x86-before-install.sh +++ b/src/travis/windows-x86-before-install.sh @@ -8,12 +8,12 @@ if [ ! -e $exefile ]; then echo "Downloading $exefile..." wget --quiet https://slproweb.com/download/$exefile fi -if [ ! -e ssl/libssl-1_1-x64.dll ]; then - echo "Installing $exefile..." - powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl" -fi +echo "Installing $exefile..." +mkdir /c/ssl +powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl" echo "OpenSSL dlls..." ls -alRF /c/ssl +ls -al /c/ echo "Python dlls..." ls -al /c/Python37/DLLs cp -v /c/ssl/*.dll /c/Python37/DLLs diff --git a/src/travis/windows-x86_64-before-install.sh b/src/travis/windows-x86_64-before-install.sh index b2384457..3ac9851c 100755 --- a/src/travis/windows-x86_64-before-install.sh +++ b/src/travis/windows-x86_64-before-install.sh @@ -8,10 +8,9 @@ if [ ! -e $exefile ]; then echo "Downloading $exefile..." wget --quiet https://slproweb.com/download/$exefile fi -if [ ! -e ssl/libssl-1_1-x64.dll ]; then - echo "Installing $exefile..." - powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl" -fi +echo "Installing $exefile..." +mkdir /c/ssl +powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl" echo "OpenSSL dlls..." ls -alRF /c/ssl echo "Python dlls..."