]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-dev-pipeline: Fix escaping of find command 2447/head
authorZack Cerza <zack@cerza.org>
Fri, 19 Sep 2025 15:01:23 +0000 (09:01 -0600)
committerZack Cerza <zack@cerza.org>
Fri, 19 Sep 2025 15:01:23 +0000 (09:01 -0600)
The linter didn't catch this one.

Signed-off-by: Zack Cerza <zack@cerza.org>
ceph-dev-pipeline/build/Jenkinsfile

index dc0fdf3f0f75673f266bcf0218171a95fa8afa8f..24c9d6ad913e40eb449ccfb944bb980d1eade21a 100644 (file)
@@ -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,