From bf3de8ae3d1118d4b50bcc8ba3daacb555de9a1b Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Mon, 5 Jun 2023 12:13:30 +0200 Subject: [PATCH] sh double quotations fix --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 914103d..804897b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 - ''' + """ } } }