]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
scripts: can't use globbing with quotes 1386/head
authorAlfredo Deza <adeza@redhat.com>
Fri, 30 Aug 2019 17:28:20 +0000 (13:28 -0400)
committerAlfredo Deza <adeza@redhat.com>
Fri, 30 Aug 2019 17:28:20 +0000 (13:28 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
scripts/build_utils.sh

index 5ee82ff1e4b77b4d873a9a86271f069ed7537e25..5903badb2073b24aae731000a1fb27bab12d550d 100644 (file)
@@ -728,7 +728,7 @@ prune_stale_vagrant_vms() {
     shopt -s globstar
 
     # From the global workspace path, find any machine stale from other jobs
-    sudo find "$SEARCH_PATH" -path "*/.vagrant/machines/*" -delete
+    sudo find $SEARCH_PATH -path "*/.vagrant/machines/*" -delete
 
     # unset extended pattern globbing, to prevent messing up other functions
     shopt -u globstar