Adding set +e to l-b-cgi.cron so script will finish on errors.

This commit is contained in:
Richard Nelson 2013-05-31 14:34:01 -05:00 committed by Daniel Baumann
parent 4c6879eb33
commit a486a29f80
1 changed files with 2 additions and 0 deletions

View File

@ -111,6 +111,8 @@ then
# Run build if config went ok
if [ "${_ERRORCONFIG}" -eq "0" ]
then
# We need to finish script.
set +e
lb build noauto >> "${_BUILD_PATH}"/log 2>&1
_ERRORBUILD="${?}"
else