From b596fa1ebe0797eab12cd179f2a7f3378080e5b0 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 30 Aug 2019 13:28:20 -0400 Subject: [PATCH] scripts: can't use globbing with quotes Signed-off-by: Alfredo Deza --- scripts/build_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5