From f23c181286d4e72513f5e620997ad4cd1d08c657 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 7 Oct 2019 15:50:53 +0300 Subject: [PATCH] kiss: Just use rm --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 692e0e2..bff16d6 100755 --- a/kiss +++ b/kiss @@ -328,7 +328,7 @@ pkg_junk() ( # Loop over each junk entry and delete it if it exists. for junk; do - [ -e "./$junk" ] && find "./$junk" -delete && + [ -e "./$junk" ] && rm -rf "./$junk" && log "${PWD##*/}" "Removed $junk" done ||: )