This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch 4.0.x
in repository https://gitbox.apache.org/repos/asf/grails-quartz.git
The following commit(s) were added to refs/heads/4.0.x by this push:
new 2d12584 chore: adjust verification script to not error when no
differences remain
2d12584 is described below
commit 2d125842fec77e8606c20280060ba8af20d30534
Author: James Daugherty <[email protected]>
AuthorDate: Fri Sep 5 12:06:27 2025 -0400
chore: adjust verification script to not error when no differences remain
---
etc/bin/verify-reproducible.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/etc/bin/verify-reproducible.sh b/etc/bin/verify-reproducible.sh
index ec23fe8..0379f53 100755
--- a/etc/bin/verify-reproducible.sh
+++ b/etc/bin/verify-reproducible.sh
@@ -141,6 +141,7 @@ if [ -s diff.txt ]; then
fi
done < diff.txt
+ : > diff_purged.txt # Ensure the file exists and is empty
mv diff_purged.txt diff.txt
rm -rf firstArtifact secondArtifact firstSource secondSource || true
@@ -150,6 +151,7 @@ if [ -s diff.txt ]; then
echo "❌ Differences Found ❌"
else
echo "✅ Differences were resolved via decompilation. ✅"
+ exit 0
fi
else
echo "✅ No Differences Found. ✅"