From: Alfredo Deza Date: Fri, 30 Aug 2019 17:28:20 +0000 (-0400) Subject: scripts: can't use globbing with quotes X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=b596fa1ebe0797eab12cd179f2a7f3378080e5b0;p=ceph-build.git scripts: can't use globbing with quotes Signed-off-by: Alfredo Deza --- diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 5ee82ff1..5903badb 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -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