From 86154adc924bd5cc02395662eeb34377734c1809 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 17 May 2019 22:17:31 -0400 Subject: [PATCH] full paths --- src/travis/windows-x86-before-install.sh | 6 +++--- src/travis/windows-x86_64-before-install.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/travis/windows-x86-before-install.sh b/src/travis/windows-x86-before-install.sh index d7ef5584..c906aa45 100755 --- a/src/travis/windows-x86-before-install.sh +++ b/src/travis/windows-x86-before-install.sh @@ -2,14 +2,14 @@ echo "Installing Net-Framework-Core..." until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done cinst -y --forcex86 python3 cd ~/pybuild -exefile=Win32OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe +export exefile=Win32OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe 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 "Extracting $exefile..." - powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=ssl" + echo "Installing $exefile..." + powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\Users\\travis\\pybuild\\ssl" fi echo "OpenSSL dlls..." ls -alRF ssl diff --git a/src/travis/windows-x86_64-before-install.sh b/src/travis/windows-x86_64-before-install.sh index 51a971cc..acd1699b 100755 --- a/src/travis/windows-x86_64-before-install.sh +++ b/src/travis/windows-x86_64-before-install.sh @@ -2,14 +2,14 @@ echo "Installing Net-Framework-Core..." until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done cinst -y python3 cd ~/pybuild -exefile=Win64OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe +export exefile=Win64OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe 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=ssl" + powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\Users\\travis\\pybuild\\ssl" fi echo "OpenSSL dlls..." ls -alRF ssl