kiss: Ensure deleted directories exist

This commit is contained in:
Dylan Araps 2020-05-12 10:00:29 +03:00
parent 5d731dcec3
commit a6da44f5d3
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 1 deletions

3
kiss
View File

@ -1454,7 +1454,8 @@ pkg_clean() {
# Go through the cache and add any entries which don't belong
# to a currently running kiss instance.
for dir in "$cac_dir/"[bep]*-[0-9]*; do
[ -e "/proc/${dir##*-}" ] || set -- "$@" "$dir"
[ -e "/proc/${dir##*-}" ] && continue
[ -e "$dir" ] && set -- "$@" "$dir"
done
rm -rf -- "$@" >/dev/null 2>&1 ||: