quotes in jf

master
rforstner 2022-01-26 17:00:10 +01:00
parent f83a3a161d
commit 342865eb94
2 changed files with 3 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -96,7 +96,7 @@
stage('install required python packages') {
steps {
sh '''
pip install --user -r requirements.txt
pip3 install --user -r requirements.txt
'''
}
}
@ -117,7 +117,7 @@
stage('Execute Export Script TERRAFORM') {
steps {
sh 'python export.py TERRAFORM'
sh 'python3 export.py TERRAFORM'
//Only required once CN is not reachable from EMEA
//loopEnvironments(environments)

View File

@ -1,5 +1,5 @@
import os
import subprocess32 as subprocess
import subprocess
import sys
import time
import shutil