Update bootstrap.sh

force python3 when creating virtualenv
This commit is contained in:
Leo Hemsted
2016-07-15 10:24:44 +01:00
committed by GitHub
parent 7e7f221461
commit f034f99b8d

View File

@@ -20,13 +20,9 @@ function display_result {
fi
}
if [ ! $VIRTUAL_ENV ]; then
if [ ! $VIRTUAL_ENV ]; then
virtualenv -p python3 ./venv
. ./venv/bin/activate
if [ ! $VIRTUAL_ENV ]; then
virtualenv ./venv
virtualenv -p python3 ./venv
fi