From: Silvio Rhatto Date: Wed, 26 Feb 2014 19:22:59 +0000 (-0300) Subject: Fix signature names on debian-dl X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=8b07d8e31128b0b8a0dbb93be93c22e323f3cffc;p=scripts.git Fix signature names on debian-dl --- 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