From 7cca371c222fb3569d109fedb9c31c20c7059356 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sat, 18 May 2019 07:23:16 -0400 Subject: [PATCH] Update windows-x86_64-before-install.sh --- src/travis/windows-x86_64-before-install.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/travis/windows-x86_64-before-install.sh b/src/travis/windows-x86_64-before-install.sh index acd1699b..b2384457 100755 --- a/src/travis/windows-x86_64-before-install.sh +++ b/src/travis/windows-x86_64-before-install.sh @@ -1,4 +1,5 @@ echo "Installing Net-Framework-Core..." +export mypath=$(pwd) until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done cinst -y python3 cd ~/pybuild @@ -9,16 +10,16 @@ if [ ! -e $exefile ]; then fi if [ ! -e ssl/libssl-1_1-x64.dll ]; then echo "Installing $exefile..." - powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\Users\\travis\\pybuild\\ssl" + powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl" fi echo "OpenSSL dlls..." -ls -alRF ssl +ls -alRF /c/ssl echo "Python dlls..." ls -al /c/Python37/DLLs -cp -v ssl/*.dll /c/Python37/DLLs +cp -v /c/ssl/*.dll /c/Python37/DLLs export PATH=$PATH:/c/Python37/scripts until cinst -y wixtoolset; do echo "trying again..."; done -cd ~ +cd $mypath pip install --upgrade pip pip freeze > upgrades.txt pip install --upgrade -r upgrades.txt