summaryrefslogtreecommitdiff
path: root/bin/signtarballs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/signtarballs')
-rwxr-xr-xbin/signtarballs4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/signtarballs b/bin/signtarballs
index e7f50ce..9438607 100755
--- a/bin/signtarballs
+++ b/bin/signtarballs
@@ -1,8 +1,8 @@
#!/bin/bash
-test -d _releases_ && cd _releases_ || test -d ../_releases_ && cd ../_releases_ || exit 1
+d=. ; while [ ! -d $d/_releases_ -a `readlink -e $d` != / ]; do d=$d/..; done
-find * -type f | egrep ".*(\.zip|\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do
+find $d/_releases_ -type f | egrep ".*(\.zip|\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do
test -f "${tarball}.md5" || { printf "md5: "; md5sum "${tarball}" | tee "${tarball}.md5"; }
test -f "${tarball}.sha1" || { printf "sha1: "; sha1sum "${tarball}" | tee "${tarball}.sha1"; }
test -f "${tarball}.sha256" || { printf "sha256: "; sha256sum "${tarball}" | tee "${tarball}.sha256"; }