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}"