From ea5df74c3bade07cf7a90e6f69057ba4f111b50b Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 12 Jun 2020 07:52:44 -0700 Subject: [PATCH] If VENV_PYTHON is not specified default to python3 --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index b9ba803..b135122 100755 --- a/script/bootstrap +++ b/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