From 358892869b545a1507ad73cc2a0821681e9129b1 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sat, 18 May 2019 08:05:31 -0400 Subject: [PATCH] fix paths --- src/travis/windows-x86-before-install.sh | 8 ++++---- src/travis/windows-x86_64-before-install.sh | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) 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..."