From 65bbe9ffe4b21dd16380891f91ed6728db93e048 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 25 Mar 2020 09:16:16 -0400 Subject: [PATCH] fix win32 openssl filenames --- src/travis/windows-x86-before-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/travis/windows-x86-before-install.sh b/src/travis/windows-x86-before-install.sh index 9ae07c95..2db5ed6d 100755 --- a/src/travis/windows-x86-before-install.sh +++ b/src/travis/windows-x86-before-install.sh @@ -21,8 +21,8 @@ if [ ! -e $exefile ]; then fi echo "Installing $exefile..." powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl" -until cp -v /c/ssl/libcrypto-1_1-x64.dll /c/python/DLLs/libcrypto-1_1.dll; do echo "trying again..."; done -until cp -v /c/ssl/libssl-1_1-x64.dll /c/python/DLLs/libssl-1_1.dll; do echo "trying again..."; done +until cp -v /c/ssl/libcrypto-1_1.dll /c/python/DLLs/libcrypto-1_1.dll; do echo "trying again..."; done +until cp -v /c/ssl/libssl-1_1.dll /c/python/DLLs/libssl-1_1.dll; do echo "trying again..."; done $pip install --upgrade pip $pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 $pip install -U