show broken code

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-04-06 20:05:58 +02:00
parent 90f5d47164
commit 08d18ec1ec
1 changed files with 3 additions and 2 deletions

View File

@ -174,8 +174,9 @@ __cdist_exec_fail_on_error()
{
sh -e "$@"
if [ "$?" -ne 0 ]; then
__cdist_echo error "$1 exited non-zero."
__cdist_exit_err "$1 exited non-zero."
__cdist_echo error "$1 exited non-zero, showing code:"
cat "$1"
__cdist_exit_err "Aborting due to non-zero exit code."
fi
}