sh double quotations fix

master
SLW\ARNAUA 2023-06-05 12:13:30 +02:00
parent 6b4604996e
commit bf3de8ae3d
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -74,12 +74,12 @@ pipeline {
script {
installRetryCount = installRetryCount+1
}
sh'''
sh"""
pip3 install --user -r requirements.txt
wget $link
python3 unzip.py $file
wget ${link}
python3 unzip.py ${file}
ls -la
'''
"""
}
}
}