Updates the mac build script so it wont fail when the venv folder does not exist.

This commit is contained in:
Colin McCune 2014-03-27 20:15:17 -04:00
parent 76b7d0095d
commit 97be5b4cfb

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
set -ex set -ex
rm -r venv rm -rf venv
virtualenv venv virtualenv venv
venv/bin/pip install pyinstaller==2.1 venv/bin/pip install pyinstaller==2.1
venv/bin/pip install . venv/bin/pip install .