Remove '-p' from venv invocation in release job 05/73105/1
authorTrevor Bramwell <tbramwell@linuxfoundation.org>
Tue, 14 Dec 2021 17:27:04 +0000 (09:27 -0800)
committerTrevor Bramwell <tbramwell@linuxfoundation.org>
Tue, 14 Dec 2021 17:27:04 +0000 (09:27 -0800)
Change-Id: I596e4b82952e26491db8d7b546f5a343c3d66ac9
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
jjb/releng/releng-release-create-venv.sh

index 508f783..69bebaf 100644 (file)
@@ -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