diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2013-03-26 21:34:39 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2013-03-26 21:34:39 +0100 |
commit | e85d6395028060e815c7497d3b5cf17f01d38e00 (patch) | |
tree | 0be477dbbf570b1d3cdb9ae6bcad9085ecc6d6fe /bin/signtarballs | |
parent | 65c582f3506a1141eaaf286c52583b7704aa0562 (diff) | |
download | buildscripts-e85d6395028060e815c7497d3b5cf17f01d38e00.tar.gz buildscripts-e85d6395028060e815c7497d3b5cf17f01d38e00.tar.bz2 buildscripts-e85d6395028060e815c7497d3b5cf17f01d38e00.zip |
fix signtarballs, add -type f to find command
Diffstat (limited to 'bin/signtarballs')
-rwxr-xr-x | bin/signtarballs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/signtarballs b/bin/signtarballs index eb8ed46..5dc236f 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -2,7 +2,7 @@ test -d _releases_ && cd _releases_ || test -d ../_releases_ && cd ../_releases_ || exit -1 -find * | egrep ".*(\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do +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 |