From 1b6a86d5fd5d2334fd8057d7f2937f1a0ab6d0db Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Tue, 11 Jun 2024 15:17:55 +0200 Subject: [PATCH] Use python for venv command rather than python3 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b13825f..31bd314 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { stage('Create virtual environment') { steps { echo 'Creating virtual environment' - sh '''python3 -m venv .venv + sh '''python -m venv .venv . .venv/bin/activate''' } }