From bfc0b57f6287a21d741086db16388ceb734747d5 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 17 May 2019 21:54:16 -0400 Subject: [PATCH] fix cp --- src/travis/windows-x86-before-install.sh | 3 ++- src/travis/windows-x86_64-before-install.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/travis/windows-x86-before-install.sh b/src/travis/windows-x86-before-install.sh index 715d475a..d7ef5584 100755 --- a/src/travis/windows-x86-before-install.sh +++ b/src/travis/windows-x86-before-install.sh @@ -1,3 +1,4 @@ +echo "Installing Net-Framework-Core..." until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done cinst -y --forcex86 python3 cd ~/pybuild @@ -14,7 +15,7 @@ echo "OpenSSL dlls..." ls -alRF ssl echo "Python dlls..." ls -al /c/Python37/DLLs -cp -v ssl/MainInstaller/*.dll /c/Python37/DLLs +cp -v ssl/*.dll /c/Python37/DLLs export PATH=$PATH:/c/Python37/scripts until cinst -y wixtoolset; do echo "trying again..."; done cd ~ diff --git a/src/travis/windows-x86_64-before-install.sh b/src/travis/windows-x86_64-before-install.sh index def77636..51a971cc 100755 --- a/src/travis/windows-x86_64-before-install.sh +++ b/src/travis/windows-x86_64-before-install.sh @@ -1,3 +1,4 @@ +echo "Installing Net-Framework-Core..." until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done cinst -y python3 cd ~/pybuild @@ -14,7 +15,7 @@ echo "OpenSSL dlls..." ls -alRF ssl echo "Python dlls..." ls -al /c/Python37/DLLs -cp -v ssl/MainInstaller/*.dll /c/Python37/DLLs +cp -v ssl/*.dll /c/Python37/DLLs export PATH=$PATH:/c/Python37/scripts until cinst -y wixtoolset; do echo "trying again..."; done cd ~