Updated bootstrap to copy version.py.dist as required

This commit is contained in:
Peter Chamberlin
2016-10-04 11:13:43 +01:00
parent 214071707b
commit 1539a527e6

View File

@@ -25,6 +25,10 @@ if [ ! $VIRTUAL_ENV ]; then
. ./venv/bin/activate
fi
# if there isn't a version file we should copy the .dist one
if [ ! -f ./app/version.py ]; then
cp ./app/version.py.dist ./app/version.py
fi
# Install Python development dependencies
pip3 install -r requirements_for_test.txt