From d50eeaa975ac54217a59fabc39c6fb73f3977333 Mon Sep 17 00:00:00 2001 From: janno Date: Tue, 5 May 2020 13:41:00 +0200 Subject: [PATCH] Update upgrade.sh Increasing the chance that upgrade.sh will work even if python3 is not in the usual path --- upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade.sh b/upgrade.sh index 75afa1db4..d764286f6 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -15,7 +15,7 @@ else fi # Create a new virtual environment -COMMAND="/usr/bin/python3 -m venv ${VIRTUALENV}" +COMMAND="/usr/bin/env python3 -m venv ${VIRTUALENV}" echo "Creating a new virtual environment at ${VIRTUALENV}..." eval $COMMAND || { echo "--------------------------------------------------------------------"