Errors during combine process now output to stderr
parent
3530ec839c
commit
04318cc73d
|
@ -72,11 +72,11 @@ tpl_footer()
|
||||||
|
|
||||||
# ensure we can locate our templates (should be in the /tools dir)
|
# ensure we can locate our templates (should be in the /tools dir)
|
||||||
if [ ! -f "$TPL_PATH" ]; then
|
if [ ! -f "$TPL_PATH" ]; then
|
||||||
echo "Error: combine.tpl not found ($TPL_PATH)"
|
echo "Error: combine.tpl not found ($TPL_PATH)" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
if [ ! -f "$TPL_PATH" ]; then
|
if [ ! -f "$TPL_PATH" ]; then
|
||||||
echo "Error: license.tpl not found ($TPL_PATH)"
|
echo "Error: license.tpl not found ($TPL_PATH)" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ for module in $CAT_MODS; do
|
||||||
filename="$PATH_LIB/$module.$MODULE_EXT"
|
filename="$PATH_LIB/$module.$MODULE_EXT"
|
||||||
|
|
||||||
if [ ! -f "$filename" ]; then
|
if [ ! -f "$filename" ]; then
|
||||||
echo "Error: module $module not found ($filename)"
|
echo "Error: module $module not found ($filename)" >&2
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue