From 466607d477778bcda6bceb7cf54d003bd30d2f9c Mon Sep 17 00:00:00 2001 From: jerick Date: Sun, 1 Feb 2026 21:57:55 -0500 Subject: [PATCH] changed quotations from limit flag --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 86659e4..f069aed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,7 +59,7 @@ pipeline { limitValue = params.LIMIT ?: '' } - def limitFlag = limitValue ? "--limit \"${limitValue}\"" : '' + def limitFlag = limitValue ? "--limit '${limitValue}'" : '' def checkFlag = (params.DRY_RUN == true) ? '--check --diff' : '' echo "DRY_RUN parameter: ${params.DRY_RUN}"