summaryrefslogtreecommitdiff
path: root/bin/signtarballs
blob: 5dc236f08803a53165e5ea7cde23da15e110773a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

test -d _releases_  && cd _releases_ || test -d ../_releases_ && cd ../_releases_ || exit -1

find * -type f | egrep ".*(\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do
	test -f $tarball.md5 || md5sum $tarball > $tarball.md5
	test -f $tarball.sha1 || sha1sum $tarball > $tarball.sha1
	test -f $tarball.asc || gpg -a -b --sign $tarball
done