aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-11 14:53:36 -0500
committerDave Reisner <d@falconindy.com>2010-01-11 14:53:36 -0500
commit1751883942c99d06fdf30a4c09ae53fceaf0378c (patch)
treefcfe8248d91a1070b91171b1515f167ac3e49d57
parent5f79e28746ea72f23b6b0d8d54a7711e1036f854 (diff)
downloadsquashfu-1751883942c99d06fdf30a4c09ae53fceaf0378c.tar.gz
Output from die() should be sent to STDERR
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index fb1482a..7deee40 100755
--- a/squashfu
+++ b/squashfu
@@ -10,7 +10,7 @@ info () {
}
die () {
- echo -e '\033[1;31mFATAL ::\033[1;m ' $*
+ echo -e '\033[1;31mFATAL ::\033[1;m ' $* >&2
exit 1
}