Browse Source
If VENV_PYTHON is not specified default to python3
pull/568/head
Ross McFarland
6 years ago
No known key found for this signature in database
GPG Key ID: 61C10C4FC8FE4A89
1 changed files with
1 additions and
1 deletions
-
script/bootstrap
|
|
|
@ -13,7 +13,7 @@ fi |
|
|
|
|
|
|
|
if [ ! -d "$VENV_NAME" ]; then |
|
|
|
if [ -z "$VENV_PYTHON" ]; then |
|
|
|
VENV_PYTHON=$(command -v python) |
|
|
|
VENV_PYTHON=$(command -v python3) |
|
|
|
fi |
|
|
|
virtualenv --python="$VENV_PYTHON" "$VENV_NAME" |
|
|
|
fi |
|
|
|
|