forked from kiss-community/kiss
kiss: Ensure deleted directories exist
This commit is contained in:
parent
5d731dcec3
commit
a6da44f5d3
3
kiss
3
kiss
@ -1454,7 +1454,8 @@ pkg_clean() {
|
|||||||
# Go through the cache and add any entries which don't belong
|
# Go through the cache and add any entries which don't belong
|
||||||
# to a currently running kiss instance.
|
# to a currently running kiss instance.
|
||||||
for dir in "$cac_dir/"[bep]*-[0-9]*; do
|
for dir in "$cac_dir/"[bep]*-[0-9]*; do
|
||||||
[ -e "/proc/${dir##*-}" ] || set -- "$@" "$dir"
|
[ -e "/proc/${dir##*-}" ] && continue
|
||||||
|
[ -e "$dir" ] && set -- "$@" "$dir"
|
||||||
done
|
done
|
||||||
|
|
||||||
rm -rf -- "$@" >/dev/null 2>&1 ||:
|
rm -rf -- "$@" >/dev/null 2>&1 ||:
|
||||||
|
Loading…
Reference in New Issue
Block a user