aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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