Browse Source

If VENV_PYTHON is not specified default to python3

pull/568/head
Ross McFarland 6 years ago
parent
commit
ea5df74c3b
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      script/bootstrap

+ 1
- 1
script/bootstrap View File

@ -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


Loading…
Cancel
Save