diff options
-rwxr-xr-x | tools/shpp.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/shpp.sh b/tools/shpp.sh index 891f9bd..fc23a52 100755 --- a/tools/shpp.sh +++ b/tools/shpp.sh @@ -27,7 +27,7 @@ die() local fmt="${1}" shift 1 - printf "shpp: ${fmt}\n" "${@}" + printf "shpp: ${fmt}\n" "${@}" >&2 exit 2 } @@ -36,7 +36,7 @@ error() local fmt="${1}" shift 1 - printf "shpp: ${fmt}\n" "${@}" + printf "shpp: ${fmt}\n" "${@}" >&2 } preprocess() |