summaryrefslogtreecommitdiff
path: root/debian/check-md5sum-etc
diff options
context:
space:
mode:
Diffstat (limited to 'debian/check-md5sum-etc')
-rw-r--r--debian/check-md5sum-etc2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/check-md5sum-etc b/debian/check-md5sum-etc
index 6c582cb..bd9380b 100644
--- a/debian/check-md5sum-etc
+++ b/debian/check-md5sum-etc
@@ -1,6 +1,6 @@
#!/bin/sh
file=$1
-md5=`md5sum share/${file} | cut -f 1 -d " "`
+md5=$(md5sum share/${file} | cut -f 1 -d " ")
if ! grep -q "$md5" share/${file}.md5sums; then
echo Error: share/${file}.md5sums is incomplete.
echo Need to add "$md5" with current version.