forked from kiss-community/kiss
kiss: Fix checksum generation.
This commit is contained in:
parent
76f3b72479
commit
1c1175933f
2
kiss
2
kiss
@ -531,7 +531,7 @@ pkg_etcsums() (
|
|||||||
|
|
||||||
# This can't be a simple 'find -exec' as 'sh256' is a shell function
|
# 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.
|
# 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"
|
sh256 "$line"
|
||||||
done > "$pkg_dir/$1/$pkg_db/$1/etcsums"
|
done > "$pkg_dir/$1/$pkg_db/$1/etcsums"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user