kiss: fix etcsums hang. Closes #176

This commit is contained in:
Dylan Araps 2020-08-20 18:14:05 +03:00
parent d1c0bb0dba
commit fefd0d7b28
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -1012,7 +1012,7 @@ pkg_etc() (
done
# Handle files in /etc/ based on a 3-way checksum check.
find etc ! -type d | sort | while read -r file; do
find etc -type f | sort | while read -r file; do
i=$((i + 1))
{ sum_new=$(sh256 "$file")