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 df96933 update verification script to be runnable from anywhere
df96933 is described below
commit df96933a714de50fc368c4af23387e6b89e56f58
Author: James Daugherty <[email protected]>
AuthorDate: Wed Jun 11 13:26:12 2025 -0400
update verification script to be runnable from anywhere
---
etc/bin/verify.sh | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/etc/bin/verify.sh b/etc/bin/verify.sh
index 6ccfe17..450785a 100755
--- a/etc/bin/verify.sh
+++ b/etc/bin/verify.sh
@@ -38,6 +38,8 @@ cleanup() {
}
trap cleanup ERR
+cd "${DOWNLOAD_LOCATION}"
+
echo "Downloading KEYS file ..."
curl -sSfLO "https://dist.apache.org/repos/dist/release/grails/KEYS"
echo "✅ KEYS Downloaded"
@@ -70,8 +72,10 @@ echo "✅ RAT passed"
echo "Verifying Reproducible Build ..."
set +e # because we have known issues here
-verify-reproducible.sh "${DOWNLOAD_LOCATION}"
+"${SCRIPT_DIR}/verify-reproducible.sh" "${DOWNLOAD_LOCATION}"
set -e
echo "✅ Reproducible Build Verified"
-echo "✅✅✅ Verification finished, see above instructions for remaining manual
testing."
\ No newline at end of file
+echo "✅✅✅ Verification finished, see above instructions for remaining manual
testing."
+
+cd "${CWD}"
\ No newline at end of file