Use python for venv command rather than python3
Some checks failed
Amarillo/amarillo-gitea/amarillo-gtfs-export/pipeline/head There was a failure building this commit

This commit is contained in:
Csaba 2024-06-11 15:17:55 +02:00
parent a7311b9152
commit 1b6a86d5fd

2
Jenkinsfile vendored
View file

@ -9,7 +9,7 @@ pipeline {
stage('Create virtual environment') { stage('Create virtual environment') {
steps { steps {
echo 'Creating virtual environment' echo 'Creating virtual environment'
sh '''python3 -m venv .venv sh '''python -m venv .venv
. .venv/bin/activate''' . .venv/bin/activate'''
} }
} }