This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch 5.0.x
in repository https://gitbox.apache.org/repos/asf/grails-redis.git
The following commit(s) were added to refs/heads/5.0.x by this push:
new 9f160e6 chore: fix diff script for when differences are resolved via
individual comparison
9f160e6 is described below
commit 9f160e6bc19a035cb4b1714c8b849f4bc3ca8c61
Author: James Daugherty <[email protected]>
AuthorDate: Fri Sep 5 10:57:29 2025 -0400
chore: fix diff script for when differences are resolved via individual
comparison
---
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 83a7a5f..69002f1 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. ✅"