Browse Source

scripts/sha512sum.sh: output error message to stderr

Matthias Schiffer 7 years ago
parent
commit
f1c23b3b3c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/sha512sum.sh

+ 1 - 1
scripts/sha512sum.sh

@@ -11,7 +11,7 @@ elif check_command shasum; then
 elif check_command cksum; then
 	ret="$(cksum -q -a sha512 "$@")"
 else
-	echo "$0: no suitable sha512sum implementation was found" >&1
+	echo "$0: no suitable sha512sum implementation was found" >&2
 	exit 1
 fi