capture failures
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
f 2022-02-15 10:23:29 -03:00
parent 280b3b8897
commit ca77a52c01

View file

@ -21,6 +21,8 @@ find build/ -type f |
source "${BUILD}"
set +e
HTTP_BASIC_USER="${HTTP_BASIC_USER}" \
HTTP_BASIC_PASSWORD="${HTTP_BASIC_PASSWORD}" \
SUTTY="${SUTTY}" \
@ -30,12 +32,14 @@ find build/ -type f |
EXTRA_PKGS="${EXTRA_PKGS}" \
EXTRA_GEMS="${EXTRA_GEMS}" \
GEM_COMPILER_FLAGS="${GEM_COMPILER_FLAGS}" \
/usr/local/bin/bootstrap || true
/usr/local/bin/bootstrap
if test $? -ne 0 ; then
BUILT="${FAILED}"
fi
set -e
dirname "${BUILT}" | xargs mkdir -p
touch "${BUILT}"
done