summaryrefslogtreecommitdiff
path: root/scripts/md5sum
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-13 17:13:29 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-13 17:13:29 +0200
commit32430d22108818f0dd88a4ada7f0f7c13b213101 (patch)
treee99df4364c0826274eb22594807fece2d5df23c8 /scripts/md5sum
parentdf71ff76b7ea5acdb9e66122e1ba0869405d0054 (diff)
fix some minor issues
Diffstat (limited to 'scripts/md5sum')
-rwxr-xr-xscripts/md5sum4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/md5sum b/scripts/md5sum
index 6a95a4707..24e1e9fac 100755
--- a/scripts/md5sum
+++ b/scripts/md5sum
@@ -2,8 +2,8 @@
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
-if [ -x /usr/bin/md5sum ];then
- md5sum "$@"
+if [ -x /usr/bin/md5sum ]; then
+ /usr/bin/md5sum "$@"
else
md5 "$@" | sed 's#MD5 (\([^)]*\)) = \(.*\)#\2 \1#'
fi