From e864dec0cfeb4756a652b4fec25462750e0395b2 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 19 Sep 2025 09:01:23 -0600 Subject: [PATCH] ceph-dev-pipeline: Fix escaping of find command The linter didn't catch this one. Signed-off-by: Zack Cerza --- ceph-dev-pipeline/build/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index dc0fdf3f0..24c9d6ad9 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -515,7 +515,7 @@ pipeline { // dist/ceph/qa and get stuck trying to follow the .qa symlinks. This was // discovered by seeing many messages about "too many levels of symbolic links" // in the system journal. - sh "find ${env.WORKSPACE}/dist/ceph/ -name .qa -exec rm {} \;" + sh "find ${env.WORKSPACE}/dist/ceph/ -name .qa -exec rm {} \\;" archiveArtifacts( artifacts: 'sccache_log*.txt', allowEmptyArchive: true, -- 2.47.3