From 2e27570475859bacfbe74dfb14ab2c295f016df6 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 6 Jan 2016 01:05:38 -0500 Subject: [PATCH] fixed push_whack_pop to also handle directories --- scripts/core/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.34.1