fixed the packages.sh scripts (from Jose)

This commit is contained in:
Jason Swartz
2015-03-31 17:01:36 -07:00
parent 2978d30c62
commit f6c0317095
2 changed files with 8 additions and 6 deletions

View File

@@ -1,8 +1,9 @@
#!/bin/bash -e
BASEDIR=`dirname $0`/..
echo "Building wheel..."
python setup.py bdist_wheel
"$BASEDIR/env/bin/python" setup.py bdist_wheel
echo "Building egg..."
python setup.py sdist
"$BASEDIR/env/bin/python" setup.py sdist

View File

@@ -1,8 +1,9 @@
#!/bin/bash -e
BASEDIR=`dirname $0`/..
echo "Building wheel..."
python setup.py bdist_wheel
"$BASEDIR/env/bin/python" setup.py bdist_wheel
echo "Building egg..."
python setup.py sdist
"$BASEDIR/env/bin/python" setup.py sdist