1
0
Fork 0

Errors during combine process now output to stderr

closure/master
Mike Gerwitz 2011-08-13 23:12:15 -04:00
parent 3530ec839c
commit 04318cc73d
1 changed files with 3 additions and 3 deletions

View File

@ -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