From: Zack Cerza Date: Fri, 19 Sep 2025 15:01:23 +0000 (-0600) Subject: ceph-dev-pipeline: Fix escaping of find command X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2447%2Fhead;p=ceph-build.git ceph-dev-pipeline: Fix escaping of find command The linter didn't catch this one. Signed-off-by: Zack Cerza --- 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,