From 41eba0c8730a2da876d5008bba4639855c4d4adc Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sun, 5 May 2019 12:56:36 -0400 Subject: [PATCH] Update windows-x86_64-before-install.sh --- src/travis/windows-x86_64-before-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/travis/windows-x86_64-before-install.sh b/src/travis/windows-x86_64-before-install.sh index 74fa8824..075ef589 100755 --- a/src/travis/windows-x86_64-before-install.sh +++ b/src/travis/windows-x86_64-before-install.sh @@ -1,9 +1,9 @@ -powershell Install-WindowsFeature Net-Framework-Core +until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done cinst -y python3 cinst -y openssl.light cp -v /c/Program\ Files/OpenSSL/bin/*.dll /c/Python37/DLLs export PATH=$PATH:/c/Python37/scripts -cinst -y wixtoolset +until cinst -y wixtoolset; do echo "trying again..."; done pip install --upgrade pip pip freeze > upgrades.txt pip install --upgrade -r upgrades.txt