diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-12-05 14:13:40 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-12-05 14:13:40 +0000 |
commit | d1d91849cf26f51f517ad98bf7fbb06ac9de5bfd (patch) | |
tree | 462142c2bf33c86db173409415d5e20322f275a7 | |
parent | 7a258a3ea5bda967a781a019685d78dca188789c (diff) | |
download | midipix_build-d1d91849cf26f51f517ad98bf7fbb06ac9de5bfd.tar.bz2 midipix_build-d1d91849cf26f51f517ad98bf7fbb06ac9de5bfd.tar.xz |
subr/ex_pkg_dispatch.subr:ex_pkg_dispatch(): correctly handle failed package builds.
-rw-r--r-- | subr/ex_pkg_dispatch.subr | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/subr/ex_pkg_dispatch.subr b/subr/ex_pkg_dispatch.subr index 4dee7863..05c69b33 100644 --- a/subr/ex_pkg_dispatch.subr +++ b/subr/ex_pkg_dispatch.subr @@ -82,9 +82,6 @@ ex_pkg_dispatch() { [ $((_njobs-=1)) -eq 0 ] && break; ;; step) "${_dispatch_fn}" step_pkg ${_pipe_msg#step }; esac; done <"${_pipe_path}"; - if [ "${_script_rc:-1}" -eq 1 ]; then - break; - fi; fi; ex_rtl_fileop rm "${_pipe_path}"; if [ "${_script_rc:-1}" -eq 1 ]; then |