]> gitweb.fluxo.info Git - scripts.git/commitdiff
Fix signature names on debian-dl
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 26 Feb 2014 19:22:59 +0000 (16:22 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 26 Feb 2014 19:22:59 +0000 (16:22 -0300)
debian-dl

index 6a3fe776e812bee36f138cbe901b02dd1b849242..78e16c097cc33d42d32776d707f06ad2f69ace37 100755 (executable)
--- 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