Fix releng-release-create-venv.sh 01/73501/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Mon, 26 Sep 2022 12:17:06 +0000 (14:17 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 26 Sep 2022 12:18:43 +0000 (14:18 +0200)
https://build.opnfv.org/ci/job/releng-release-v1.25-verify/1/console

Change-Id: I5365e37d89eb736cf33459d9c3e0a14e54f5fdb4
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
jjb/releng/releng-release-create-venv.sh

index 98e19c6..63410b9 100644 (file)
@@ -10,7 +10,7 @@
 set -e -o pipefail
 echo "---> Create virtualenv"
 
-sudo -H pip3 install "virtualenv<=20.15.1"
+sudo -H python3 -m pip install "virtualenv<=20.15.1"
 python3 -m venv $WORKSPACE/venv
 
 # shellcheck source=$WORKSPACE/venv/bin/activate disable=SC1091