From 83c64f1f71cce221687ced515ef7e1c7bcfd28c8 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 26 Jul 2019 11:53:12 -0400 Subject: [PATCH] few more fixes --- src/travis/osx-x86_64-before-install.sh | 1 + src/travis/windows-x86-before-install.sh | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/travis/osx-x86_64-before-install.sh b/src/travis/osx-x86_64-before-install.sh index 47da3d29..8671d717 100755 --- a/src/travis/osx-x86_64-before-install.sh +++ b/src/travis/osx-x86_64-before-install.sh @@ -10,6 +10,7 @@ if [ ! -f python-$BUILD_PYTHON_VERSION-macosx10.9.pkg ]; then fi sudo installer -pkg python-$BUILD_PYTHON_VERSION-macosx10.9.pkg -target / export python=python3 +export pip=pip3 # Compile latest OpenSSL #if [ ! -d openssl-$BUILD_OPENSSL_VERSION ]; then diff --git a/src/travis/windows-x86-before-install.sh b/src/travis/windows-x86-before-install.sh index 6b76889c..118771fe 100755 --- a/src/travis/windows-x86-before-install.sh +++ b/src/travis/windows-x86-before-install.sh @@ -35,9 +35,10 @@ wget --quiet https://github.com/pyinstaller/pyinstaller/releases/download/v$PYIN tar xf PyInstaller-$PYINSTALLER_VERSION.tar.gz cd PyInstaller-$PYINSTALLER_VERSION/bootloader echo "bootloader before:" -md5sum ../PyInstaller/bootloader/Windows-32bit/ -python3 ./waf all +md5sum ../PyInstaller/bootloader/Windows-32bit/* +\python37\python ./waf all echo "bootloader after:" -md5sum ../PyInstaller/bootloader/Windows-32bit/ +md5sum ../PyInstaller/bootloader/Windows-32bit/* +echo "PATH: $PATH" cd .. -python3 setup.py install +\python37\python setup.py install