This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 5eff7414af fix: do not clear the diff_purge.txt
5eff7414af is described below
commit 5eff7414af5029eff5734ff3fa261fb1e64dfaa9
Author: James Daugherty <[email protected]>
AuthorDate: Wed Oct 15 17:11:51 2025 -0400
fix: do not clear the diff_purge.txt
---
etc/bin/verify-reproducible.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/etc/bin/verify-reproducible.sh b/etc/bin/verify-reproducible.sh
index d9e34a1575..1df3ac375a 100755
--- a/etc/bin/verify-reproducible.sh
+++ b/etc/bin/verify-reproducible.sh
@@ -106,6 +106,7 @@ if [ -s diff.txt ]; then
fi
fi
+ : > diff_purged.txt # Ensure the file exists and is empty
while IFS= read -r jar_file; do
echo "Checking jar ${jar_file}..."
@@ -140,7 +141,6 @@ 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