summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-12-03 17:23:38 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-12-03 17:23:38 +0000
commitb3d07bcb5953983f4d183114e90ad76ca70a3dff (patch)
treef16992db52a7e833dde54e95e192e646929c9da4 /build.sh
parent0580af8a0231775177226c1013378de1a878ec29 (diff)
downloadmidipix_build-b3d07bcb5953983f4d183114e90ad76ca70a3dff.tar.bz2
midipix_build-b3d07bcb5953983f4d183114e90ad76ca70a3dff.tar.xz
build.sh:fail_pkg: always append to ${BUILD_PKGS_FAILED}.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index a70367d4..21672f96 100755
--- a/build.sh
+++ b/build.sh
@@ -42,9 +42,9 @@ buildp_dispatch() {
fi;
ex_rtl_log_msg succ "Finished \`${_pkg_name}' build."; ;;
fail_pkg) : $((BUILD_NFAIL+=1));
+ BUILD_PKGS_FAILED="${BUILD_PKGS_FAILED:+${BUILD_PKGS_FAILED} }${_pkg_name}";
if [ "${ARG_RELAXED:-0}" -eq 1 ]; then
ex_rtl_log_msg fail "Build failed in \`${_pkg_name}', check \`${BUILD_WORKDIR}/${_pkg_name}_stderrout.log' for details.";
- BUILD_PKGS_FAILED="${BUILD_PKGS_FAILED:+${BUILD_PKGS_FAILED} }${_pkg_name}";
else
ex_rtl_log_msg fail "${BUILD_WORKDIR}/${_pkg_name}_stderrout.log:";
cat "${BUILD_WORKDIR}/${_pkg_name}_stderrout.log";