aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-13 13:33:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2014-02-13 13:33:26 -0200
commit11fe0853ee6d829761847c673168066f9d560d83 (patch)
tree6646452cc1814d5ad7262ba50337e74ff60cd259
parentffabc1ca36a56dd5f031969efa773c94aded9187 (diff)
downloadscripts-11fe0853ee6d829761847c673168066f9d560d83.tar.gz
scripts-11fe0853ee6d829761847c673168066f9d560d83.tar.bz2
Minor fix at debian-dl
-rwxr-xr-xdebian-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian-dl b/debian-dl
index ea25be2..6a3fe77 100755
--- a/debian-dl
+++ b/debian-dl
@@ -36,7 +36,7 @@ wget -c $LIMIT $URL
# Check hashes
for hash in $HASHES; do
echo "Checking $FILENAME against $hash file..."
- check="`echo $hash | tr '[:upper:]' '[:lower:]' | sed -e 's/s$//'`sum"
+ check="`echo $hash | tr '[:upper:]' '[:lower:]' | sed -e 's/s$//'`"
grep -e "$FILENAME$" $hash | $check -c
done