From c093b92c0b74eb58fea2074f91af944052d6a56b Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 4 Dec 2020 16:27:17 -0500 Subject: [PATCH] actions take 89 --- src/travis/windows-before-install.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/travis/windows-before-install.sh b/src/travis/windows-before-install.sh index 5e598749..02fee3e5 100755 --- a/src/travis/windows-before-install.sh +++ b/src/travis/windows-before-install.sh @@ -15,12 +15,13 @@ echo "This is a ${BITS}-bit build for ${PLATFORM}" export mypath=$(pwd) cd ~ -choco install python $CHOCOPTIONS +choco install python --limit-output $CHOCOPTIONS +until [ -f "/c/Python39/bin/python3.exe" ]; do + sleep 5 + ls -l /c/Python39/ +done export python="/c/Python39/bin/python3" export pip="/c/Python39/bin/pip3" -ls -l / -ls -l /c -ls -l /c/Python39/ # Python #echo "Installing Python..."