From cffaaa63a0f463a2f4fd773c1c39689ce132c33e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 8 May 2020 11:12:27 +0300 Subject: [PATCH] kiss: Remove forgotten cache file --- kiss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kiss b/kiss index 63322b2..6eae9cc 100755 --- a/kiss +++ b/kiss @@ -1392,7 +1392,8 @@ pkg_clean() { # Create a list containing the current invocation's temporary # files and directories. - set +f -- "$mak_dir" "$pkg_dir" "$tar_dir" "$cac_dir/$pid-m" + set +f -- "$mak_dir" "$pkg_dir" "$tar_dir" \ + "$cac_dir/$pid-m" "$cac_dir/$pid-c" # Go through the cache and add any entries which don't belong # to a currently running kiss instance. @@ -1518,7 +1519,7 @@ args() { l|list) pkg_list "$@" ;; u|update) pkg_updates ;; s|search) for pkg do pkg_find "$pkg" all; done ;; - v|version) printf '1.13.3\n' ;; + v|version) printf '1.13.4\n' ;; h|help|-h|--help|'') log 'kiss [a|b|c|i|l|r|s|u|v] [pkg] [pkg] [pkg]'