guix: exclude debug symbols for apple from list of hash sums due to its undeterminism

This commit is contained in:
Konstantin Akimov 2024-04-03 23:41:31 +07:00
parent e1532db3e1
commit a29f82670b
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524

View File

@ -192,6 +192,7 @@ mkdir -p "$outsigdir"
if (( ${#noncodesigned_fragments[@]} )); then
cat "${noncodesigned_fragments[@]}" \
| grep -v apple-darwin-debug.tar \
| sort -u \
| sort -k2 \
| basenameify_SHA256SUMS \
@ -220,6 +221,7 @@ mkdir -p "$outsigdir"
# Note: all.SHA256SUMS attests to all of $sha256sum_fragments, but is
# not needed if there are no $codesigned_fragments
cat "${sha256sum_fragments[@]}" \
| grep -v apple-darwin-debug.tar \
| sort -u \
| sort -k2 \
| basenameify_SHA256SUMS \