This is an automated email from the ASF dual-hosted git repository.
mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-scala.git
The following commit(s) were added to refs/heads/master by this push:
new ac9749f Add checksum generation
ac9749f is described below
commit ac9749fdd1562fd0524775d44d99e7caa40b4133
Author: Matt Sicker <[email protected]>
AuthorDate: Mon Jan 3 15:38:10 2022 -0600
Add checksum generation
---
create-distributions.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/create-distributions.sh b/create-distributions.sh
index ddf6dd9..8f9ef10 100755
--- a/create-distributions.sh
+++ b/create-distributions.sh
@@ -17,6 +17,8 @@
function sign_file() {
release_key=${GPG_KEYID:-748F15B2CF9BA8F024155E6ED7C92B70FA1C814D}
gpg --detach-sign --armor --user ${release_key} "$1"
+ shasum -a256 "$1" >"$1.sha256"
+ shasum -a512 "$1" >"$1.sha512"
}
function create_sources_from_tag() {