summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-12-07 13:15:00 (EST)
committer P. J. McDermott <pj@pehjota.net>2015-12-07 13:15:00 (EST)
commitb0b1cc9188d1d5621a2a9c9271b6271fd6c62229 (patch)
tree06b1c3990bffab57b991e09f34ac970a7937926b /tools
parentee149d43151fa390845caaec06838f55ae3f3791 (diff)
tools/shld.sh: Write errors to stderr
Diffstat (limited to 'tools')
-rwxr-xr-xtools/shld.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shld.sh b/tools/shld.sh
index 88973ed..e1dff5f 100755
--- a/tools/shld.sh
+++ b/tools/shld.sh
@@ -31,7 +31,7 @@ die()
local fmt="${1}"
shift 1
- printf "shld: ${fmt}\n" "${@}"
+ printf "shld: ${fmt}\n" "${@}" >&2
exit 2
}