changed quotations from limit flag

This commit is contained in:
2026-02-01 21:57:55 -05:00
parent 49833c652e
commit 466607d477

2
Jenkinsfile vendored
View File

@@ -59,7 +59,7 @@ pipeline {
limitValue = params.LIMIT ?: '' limitValue = params.LIMIT ?: ''
} }
def limitFlag = limitValue ? "--limit \"${limitValue}\"" : '' def limitFlag = limitValue ? "--limit '${limitValue}'" : ''
def checkFlag = (params.DRY_RUN == true) ? '--check --diff' : '' def checkFlag = (params.DRY_RUN == true) ? '--check --diff' : ''
echo "DRY_RUN parameter: ${params.DRY_RUN}" echo "DRY_RUN parameter: ${params.DRY_RUN}"