kiss: Just use rm

This commit is contained in:
Dylan Araps 2019-10-07 15:50:53 +03:00
parent f0d86b6d85
commit f23c181286
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -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 ||:
)