diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-10-30 20:34:21 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-10-30 20:34:21 (EDT) |
commit | 23d5b8f625e53497cb7de3f5814a2752e3337301 (patch) | |
tree | d0ffcc1caece5c7adafff2f7618b7545b3719204 | |
parent | 3946ad5f53f8f474107870a5592c53b0b42bfe9a (diff) | |
download | firman.sh-23d5b8f625e53497cb7de3f5814a2752e3337301.zip firman.sh-23d5b8f625e53497cb7de3f5814a2752e3337301.tar.gz firman.sh-23d5b8f625e53497cb7de3f5814a2752e3337301.tar.bz2 |
tools/shmin.sh: Write errors to stderr
-rwxr-xr-x | tools/shmin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shmin.sh b/tools/shmin.sh index 73df7aa..2bcb5f6 100755 --- a/tools/shmin.sh +++ b/tools/shmin.sh @@ -32,7 +32,7 @@ die() local fmt="${1}" shift 1 - printf "shmin: ${fmt}\n" "${@}" + printf "shmin: ${fmt}\n" "${@}" >&2 exit 2 } |