From 1c1175933f222122bf8c5713163e97e47088026b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 30 Aug 2020 10:24:58 +0300 Subject: [PATCH] kiss: Fix checksum generation. --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 47bd3e3..30cff39 100755 --- a/kiss +++ b/kiss @@ -531,7 +531,7 @@ pkg_etcsums() ( # This can't be a simple 'find -exec' as 'sh256' is a shell function # and not a real command of any kind. This is the shell equivalent. - find etc ! -type d | sort | while read -r line; do + find etc -type f | sort | while read -r line; do sh256 "$line" done > "$pkg_dir/$1/$pkg_db/$1/etcsums" )