summaryrefslogtreecommitdiff
path: root/scripts/md5sum
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-13 17:17:14 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-13 17:17:14 +0200
commitb448bbcdab09b70b4d03ea0bc9167878e7f054da (patch)
tree40ea72e4979ce176f6280b25368713122bee1b9c /scripts/md5sum
parentd804be5baee6590ff6e91d267c8cb9933ed7ac60 (diff)
parentd2e5a673aa7637c990ca7307e831327eb67e3fe7 (diff)
Merge branch 'master' of ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/md5sum')
-rwxr-xr-x[-rw-r--r--]scripts/md5sum4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/md5sum b/scripts/md5sum
index 6a95a4707..24e1e9fac 100644..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