aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-08-28 23:28:00 +0200
committerLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-08-28 23:28:00 +0200
commit4dc1882f5ac870d065fc1588512006e28685391d (patch)
tree764e272673416d99d224908bf17d8bff0341c720
parentd26b791bfc58f7528161c5b2ad356e60f3ec4af9 (diff)
downloadevaltool-4dc1882f5ac870d065fc1588512006e28685391d.tar.gz
evaltool-4dc1882f5ac870d065fc1588512006e28685391d.tar.bz2
evaltool-4dc1882f5ac870d065fc1588512006e28685391d.tar.lz
evaltool-4dc1882f5ac870d065fc1588512006e28685391d.zip

fix: remove double-spaces

-rwxr-xr-xcontrib/ensure-reproducible-builds.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ensure-reproducible-builds.sh b/contrib/ensure-reproducible-builds.sh
index ff0b9aa..37e531a 100755
--- a/contrib/ensure-reproducible-builds.sh
+++ b/contrib/ensure-reproducible-builds.sh
@@ -7,7 +7,7 @@ cd artifacts
ZIPNAME="$(jq -r '.name + "-" + .version + "-unsigned.zip"' ../manifest.json)"
unzip "$ZIPNAME"
rm "$ZIPNAME"
-HASH1="$( (find . -type f -print0 | sort -z | xargs -0 sha512sum;
+HASH1="$( (find . -type f -print0 | sort -z | xargs -0 sha512sum;
find . \( -type f -o -type d \) -print0 | sort -z | \
xargs -0 stat -c '%n %a') \
| sha512sum)"
@@ -20,7 +20,7 @@ make mozaddons
cd artifacts
unzip "$ZIPNAME"
rm "$ZIPNAME"
-HASH2="$( (find . -type f -print0 | sort -z | xargs -0 sha512sum;
+HASH2="$( (find . -type f -print0 | sort -z | xargs -0 sha512sum;
find . \( -type f -o -type d \) -print0 | sort -z | \
xargs -0 stat -c '%n %a') \
| sha512sum)"