From: caviedesj Date: Mon, 9 Feb 2026 15:20:48 +0000 (+0100) Subject: Fix. Add single quotes when removing kubeTmpDir in cleanup stage, e2e tests pipeline X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=0c1528fbdb6d776285385b638ae51d81e8ef01f5;p=osm%2Fdevops.git Fix. Add single quotes when removing kubeTmpDir in cleanup stage, e2e tests pipeline Change-Id: I7131c28ef14d613e4bc5d4b86077f991a2fa7850 Signed-off-by: caviedesj --- diff --git a/jenkins/ci-pipelines/ci_e2e_tests.groovy b/jenkins/ci-pipelines/ci_e2e_tests.groovy index 3747a569..01301a0c 100644 --- a/jenkins/ci-pipelines/ci_e2e_tests.groovy +++ b/jenkins/ci-pipelines/ci_e2e_tests.groovy @@ -425,7 +425,7 @@ node('pool') { stage('Cleanup') { // Always attempt to cleanup temp kubeconfig directory if created. if (kubeTmpDir?.trim()) { - sh "rm -rf ${kubeTmpDir} || true" + sh "rm -rf '${kubeTmpDir}' || true" kubeTmpDir = null }