From 73f88f9514bbee2023ec9ceb2e8d9b214a61a957 Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Mon, 5 Jun 2023 11:36:23 +0200 Subject: [PATCH] string interpolation --- Jenkinsfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 61b1b7d..4143187 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -74,10 +74,11 @@ pipeline { script { installRetryCount = installRetryCount+1 } - sh "pip3 install --user -r requirements.txt" - sh "wget "${provider}"" - sh "python3 unzip.py "${link}"" - sh "ls -la" + sh''' "pip3 install --user -r requirements.txt" + wget "${provider}" + python3 unzip.py "${link}" + ls -la + ''' } } }