diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-07-22 19:10:40 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-07-28 12:59:47 -0400 |
commit | 43225f0a2a517ccd79dc49279b979ffd2eca6b85 (patch) | |
tree | d92e3e71638029e9b27d974bd7fb8a59021c4738 /contrib/guix | |
parent | d080c27066449f76bc8709fc50e422757971d2cf (diff) |
guix: Remove extra \r from all.SHA256SUMS line ending
guix-attest mistakenly added an extra \r to the line endings in
all.SHA256SUMS, causing guix-verify to erroneously fail.
Co-Authored-By: Carl Dong <contact@carldong.me>
Diffstat (limited to 'contrib/guix')
-rwxr-xr-x | contrib/guix/guix-attest | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/guix/guix-attest b/contrib/guix/guix-attest index 396cb39895..dcf709b542 100755 --- a/contrib/guix/guix-attest +++ b/contrib/guix/guix-attest @@ -216,7 +216,6 @@ mkdir -p "$outsigdir" cat "${sha256sum_fragments[@]}" \ | sort -u \ | sort -k2 \ - | sed 's/$/\r/' \ | rfc4880_normalize_document \ > "$temp_all" if [ -e all.SHA256SUMS ]; then |