From d4e1f1af7ad5a3b1b9fbba64fd94ae55d5555360 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Mon, 18 Feb 2019 17:05:48 +0000 Subject: [PATCH] Fix cleanup script not to remove extracted/bundles directories (#8764) --- scripts/cleanup.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/cleanup.sh b/scripts/cleanup.sh index 6c174b3a663..3e7923a5c1d 100755 --- a/scripts/cleanup.sh +++ b/scripts/cleanup.sh @@ -9,8 +9,11 @@ live=`dirname $(readlink -f "$HOME/live")` # currently live bundle (just the name of the bundle) live_bundle=`grep 'script src="bundles' live/index.html | sed -e 's#.*bundles/##' -e 's#/.*##'` -# clean up 'extracted': find things which are older than 7 days, exclude the current live one, and remove -find $HOME/extracted -maxdepth 1 -type d -ctime +7 \! -path "$live" -exec rm -r {} \; +# clean up 'extracted': find things which are older than 7 days, exclude the +# current live one, and remove +find $HOME/extracted -mindepth 1 -maxdepth 1 -type d -ctime +7 \ + \! -path "$live" -exec rm -r {} \; # clean up 'bundles': ditto -find $HOME/bundles -maxdepth 1 -type d -ctime +7 \! -name "$live_bundle" -exec rm -r {} \; +find $HOME/bundles -mindepth 1 -maxdepth 1 -type d -ctime +7 \ + \! -name "$live_bundle" -exec rm -r {} \;