From 5ff6be7e4283e12b430cc2cda01c0c4bbf243f69 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 16 Apr 2017 23:58:42 -0700 Subject: [PATCH] fix project names in the vagrant build script --- vagrant/scripts/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vagrant/scripts/build.sh b/vagrant/scripts/build.sh index 1ef371fd..7503c3c5 100755 --- a/vagrant/scripts/build.sh +++ b/vagrant/scripts/build.sh @@ -25,7 +25,7 @@ if [ "$PORT" == "" ]; then fi -TARBALL=$(ls ~/dist/wxPython_Phoenix-*.tar.gz) +TARBALL=$(ls ~/dist/wxPython-*.tar.gz) if [ "$TARBALL" == "" ]; then echo "ERROR: Source tarball not found." exit 1 @@ -42,7 +42,7 @@ function do_build { TAG=$2 FLAG=$3 - rm -rf ~/wxPython_Phoenix-* + rm -rf ~/wxPython-* # setup echo "**** do_build $VENV $TAG $FLAG ****" @@ -56,7 +56,7 @@ function do_build { tar xzf $TARBALL # move into the source tree - cd ~/wxPython_Phoenix-* + cd ~/wxPython-* # update packages pip install -U pip @@ -75,7 +75,7 @@ function do_build { # clean up cd ~ - rm -rf ~/wxPython_Phoenix-* + rm -rf ~/wxPython-* export PATH=$ORIG_PATH }