From 0c1528fbdb6d776285385b638ae51d81e8ef01f5 Mon Sep 17 00:00:00 2001 From: caviedesj Date: Mon, 9 Feb 2026 16:20:48 +0100 Subject: [PATCH] Fix. Add single quotes when removing kubeTmpDir in cleanup stage, e2e tests pipeline Change-Id: I7131c28ef14d613e4bc5d4b86077f991a2fa7850 Signed-off-by: caviedesj --- jenkins/ci-pipelines/ci_e2e_tests.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.25.1