Skip to content

Commit 89bdacb

Browse files
committed
Add simpler helper script to generate MD5 and SHA checksum files
.. which we use before manually publishing to Maven Central.
1 parent 6e938fe commit 89bdacb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/generate_checksum_files.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
md5sum $1 | cut -d ' ' -f 1 > $1.md5
3+
sha1sum $1 | cut -d ' ' -f 1 > $1.sha1
4+
sha256sum $1 | cut -d ' ' -f 1 > $1.sha256
5+
sha512sum $1 | cut -d ' ' -f 1 > $1.sha512

0 commit comments

Comments
 (0)