Follow symbolic links

This commit is contained in:
Jeremy Soller 2019-09-22 10:42:51 -06:00
parent a7a732b227
commit 200a526906
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -443,7 +443,7 @@ function op {
mkdir -p stage/pkg
pushd stage > /dev/null
find . -type f | cut -d / -f 2- | sort | while read file
find -L . -type f | cut -d / -f 2- | sort | while read file
do
sha256sum "$file" >> "pkg/$1.sha256sums"
done