From 6bf17ea35f318cc7e00acc331fb152f53edd6545 Mon Sep 17 00:00:00 2001 From: jerick Date: Fri, 30 Jan 2026 15:07:34 -0500 Subject: [PATCH] another inventory fix --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b92ec00..b06e1c2 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' : '' def extraVars = (params.CLEANUP_SNAPSHOTS == true) ? "-e cleanup_old_snapshots=true" : ''