From: Chris Koeritz Date: Wed, 6 Jan 2016 06:05:38 +0000 (-0500) Subject: fixed push_whack_pop to also handle directories X-Git-Tag: 2.140.90~552 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=2e27570475859bacfbe74dfb14ab2c295f016df6;p=feisty_meow.git fixed push_whack_pop to also handle directories --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index d6beda88..fa924a74 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -473,7 +473,7 @@ if [ -z "$skip_all" ]; then { local dir="$1"; shift pushd "$dir" &>/dev/null - rm $* &>/dev/null + rm -rf $* &>/dev/null popd &>/dev/null }