From 9864b6c41afe5fe2c16c1163bd47d23f71574473 Mon Sep 17 00:00:00 2001 From: Georgios Jason Efstathiou Date: Thu, 26 Dec 2024 12:53:23 +0100 Subject: [PATCH] perhaps fix? --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0c4e76d..a51d0b7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { steps { script { // Calculate the hash of your Docker image (or your application code) - def imageHash = sh(script: "docker images --no-trunc $IMAGE_NAME | grep latest | awk '{print $3}'", returnStdout: true).trim() + def imageHash = sh(script: "docker images --no-trunc $IMAGE_NAME | grep latest | awk '{print \$3}'", returnStdout: true).trim() // Read the jobspec.json file def jobSpec = readJSON file: 'jobspec.json'