From 4dc1882f5ac870d065fc1588512006e28685391d Mon Sep 17 00:00:00 2001 From: memdmp Date: Thu, 28 Aug 2025 23:28:00 +0200 Subject: fix: remove double-spaces --- contrib/ensure-reproducible-builds.sh | 4 ++-- 1 file 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)" -- cgit v1.2.3