diff options
Diffstat (limited to '.extras/image-builder/bootstrap.sh')
| -rw-r--r-- | .extras/image-builder/bootstrap.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.extras/image-builder/bootstrap.sh b/.extras/image-builder/bootstrap.sh index 99766fe..63b5c17 100644 --- a/.extras/image-builder/bootstrap.sh +++ b/.extras/image-builder/bootstrap.sh @@ -518,8 +518,13 @@ DOCKERFILE # Main # ============================================================================ +rc=0 for VERSION in "${BUILD_VARIANTS[@]}"; do if changelog_changed "${VERSION}"; then - build_variant "${VERSION}" + if ! ( build_variant "${VERSION}" ); then + _warn "variant ${VERSION} failed; continuing." + rc=1 + fi fi done +exit "${rc}" |
