diff options
-rwxr-xr-x | bin/signtarballs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/signtarballs b/bin/signtarballs index 5dc236f..81fa596 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -2,7 +2,7 @@ test -d _releases_ && cd _releases_ || test -d ../_releases_ && cd ../_releases_ || exit -1 -find * -type f | egrep ".*(\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do +find * -type f | egrep ".*(\.zip|\.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 |