From 04318cc73dcfa13db4c1b2996cad749b4bf62d63 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sat, 13 Aug 2011 23:12:15 -0400 Subject: [PATCH] Errors during combine process now output to stderr --- tools/combine | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/combine b/tools/combine index 51c4759..08216c6 100755 --- a/tools/combine +++ b/tools/combine @@ -72,11 +72,11 @@ tpl_footer() # ensure we can locate our templates (should be in the /tools dir) if [ ! -f "$TPL_PATH" ]; then - echo "Error: combine.tpl not found ($TPL_PATH)" + echo "Error: combine.tpl not found ($TPL_PATH)" >&2 exit 1 fi if [ ! -f "$TPL_PATH" ]; then - echo "Error: license.tpl not found ($TPL_PATH)" + echo "Error: license.tpl not found ($TPL_PATH)" >&2 exit 1 fi @@ -89,7 +89,7 @@ for module in $CAT_MODS; do filename="$PATH_LIB/$module.$MODULE_EXT" if [ ! -f "$filename" ]; then - echo "Error: module $module not found ($filename)" + echo "Error: module $module not found ($filename)" >&2 exit 2 fi