From 63afbb05a1da0f4336dedd1f79c0cedfed978b51 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 28 Aug 2019 17:43:19 +0000 Subject: [PATCH] kiss: fix cache sometimes not clearing. --- kiss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kiss b/kiss index 6ab1385..fe4c904 100755 --- a/kiss +++ b/kiss @@ -924,6 +924,9 @@ pkg_clean() { # to the build. [ "$KISS_DEBUG" = 1 ] && return + # Block 'Ctrl+C' while cache is being cleaned. + trap '' INT + # Remove temporary directories. rm -rf -- "$mak_dir" "$pkg_dir" "$tar_dir" }