diff options
author | Dave Reisner <d@falconindy.com> | 2010-01-11 14:53:36 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-01-11 14:53:36 -0500 |
commit | 1751883942c99d06fdf30a4c09ae53fceaf0378c (patch) | |
tree | fcfe8248d91a1070b91171b1515f167ac3e49d57 | |
parent | 5f79e28746ea72f23b6b0d8d54a7711e1036f854 (diff) | |
download | squashfu-1751883942c99d06fdf30a4c09ae53fceaf0378c.tar.gz |
Output from die() should be sent to STDERR
-rwxr-xr-x | squashfu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |