Browse Source

Merge pull request #568 from github/python-3-default

If VENV_PYTHON is not specified default to python3
pull/571/head
Ross McFarland 6 years ago
committed by GitHub
parent
commit
3ec01d32f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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