aboutsummaryrefslogtreecommitdiff
path: root/debian-dl
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-26 16:22:59 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-02-26 16:22:59 -0300
commit8b07d8e31128b0b8a0dbb93be93c22e323f3cffc (patch)
tree37e24c5a2751016aafb12cabd9b822c926a79c97 /debian-dl
parent280316edd6253a6a57dd762f0a4f9d189b571ddd (diff)
downloadscripts-8b07d8e31128b0b8a0dbb93be93c22e323f3cffc.tar.gz
scripts-8b07d8e31128b0b8a0dbb93be93c22e323f3cffc.tar.bz2
Fix signature names on debian-dl
Diffstat (limited to 'debian-dl')
-rwxr-xr-xdebian-dl6
1 files changed, 3 insertions, 3 deletions
diff --git a/debian-dl b/debian-dl
index 6a3fe77..78e16c0 100755
--- a/debian-dl
+++ b/debian-dl
@@ -22,7 +22,7 @@ fi
# Fetch hashes
for hash in $HASHES; do
wget -c $BASE/$hash
- wget -c $BASE/$hash.sig
+ wget -c $BASE/$hash.sign
done
# Set rate limit
@@ -42,6 +42,6 @@ done
# Check hash integrity
for hash in $HASHES; do
- echo "Checking $hash.sig..."
- gpg --verify $hash.sig
+ echo "Checking $hash.sign..."
+ gpg --verify $hash.sign
done