Commit: 2ce3615e98ebbf6897d83064a29a579dc3bc9b2c Parent: a489eed15dbf5fdbd280d60afeabf7d698ac69d8 Author: Klemens Nanni Date: Mon, 16 May 2016 04:12:11 +0200 Write error messages to stderr only Diffstat:
M | tpm.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tpm.sh b/tpm.sh @@ -31,7 +31,7 @@ fi ## Helper die() { - printf '%s\n' "${1}" 1>&2 + printf '%s\n' "${1}" >&1 exit 1 }