Revert "[build] Fix exit status"

This reverts commit 80b92b818d.

Change-Id: Iad9cecaaf9a0bece64f632115c626cca2c812be8
This commit is contained in:
Dmitry Burmistrov 2016-08-25 12:57:28 +00:00
parent 80b92b818d
commit c4c633a6cd
1 changed files with 0 additions and 5 deletions

View File

@ -176,7 +176,6 @@ main () {
;;
esac
fi
local EXIT_STATUS=$(cat ${DEST_PATH}/exitstatus || echo 1)
# Get into buildroot
if [ "${ACTION_SHELL}" == "true" ] ; then
@ -196,10 +195,6 @@ main () {
;;
esac
fi
if [ "$EXIT_STATUS" -ne 0 ] ; then
fail_exit "BUILD FAILED: returned result is $EXIT_STATUS"
fi
}
main "$@"