We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f425ea6 commit 01af0efCopy full SHA for 01af0ef
1 file changed
etc/bin/verify.sh
@@ -38,6 +38,7 @@ cleanup() {
38
}
39
trap cleanup ERR
40
41
+cd "${DOWNLOAD_LOCATION}"
42
echo "Downloading KEYS file ..."
43
curl -sSfLO "https://dist.apache.org/repos/dist/release/grails/KEYS"
44
echo "✅ KEYS Downloaded"
@@ -70,8 +71,9 @@ echo "✅ RAT passed"
70
71
72
echo "Verifying Reproducible Build ..."
73
set +e # because we have known issues here
-verify-reproducible.sh "${DOWNLOAD_LOCATION}"
74
+"${SCRIPT_DIR}/verify-reproducible.sh" "${DOWNLOAD_LOCATION}"
75
set -e
76
echo "✅ Reproducible Build Verified"
77
-echo "✅✅✅ Verification finished, see above instructions for remaining manual testing."
78
+echo "✅✅✅ Verification finished, see above instructions for remaining manual testing."
79
+cd "${CWD}"
0 commit comments