summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2021-12-14 09:27:04 -0800
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2021-12-14 09:27:04 -0800
commit56d8434b0d216567636605f0ee3f3fd4f514260d (patch)
tree750eeecfb68f71501705c31df6ab3521e35ac78e /jjb
parent3184d7a066f7992047bf3306ae5608af203a2613 (diff)
Remove '-p' from venv invocation in release job
Change-Id: I596e4b82952e26491db8d7b546f5a343c3d66ac9 Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r--jjb/releng/releng-release-create-venv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng/releng-release-create-venv.sh b/jjb/releng/releng-release-create-venv.sh
index 508f78324..69bebaff7 100644
--- a/jjb/releng/releng-release-create-venv.sh
+++ b/jjb/releng/releng-release-create-venv.sh
@@ -11,7 +11,7 @@ set -e -o pipefail
echo "---> Create virtualenv"
sudo -H pip3 install virtualenv
-python3 -m venv -p python3 $WORKSPACE/venv
+python3 -m venv $WORKSPACE/venv
# shellcheck source=$WORKSPACE/venv/bin/activate disable=SC1091
source $WORKSPACE/venv/bin/activate