diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-12-04 12:13:41 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-12-04 12:13:41 +0000 |
commit | 18dfad86a0a7e83baebf54f305909fc850066834 (patch) | |
tree | 99577d36e7e53ed919ab2b8e479b81704b24a3e8 | |
parent | 855de266276923872da20ffc8c2d1d98cec40dfa (diff) | |
download | midipix_build-18dfad86a0a7e83baebf54f305909fc850066834.tar.bz2 midipix_build-18dfad86a0a7e83baebf54f305909fc850066834.tar.xz |
build.sh:exec_start: use exit(1) instead of clearing ${PKG_BUILD_STEPS} when skipping dist_{digest,tarballs}.
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -77,8 +77,8 @@ buildp_dispatch() { fi; if [ -z "${ARG_TARBALL}" ]; then case "${_pkg_name}" in - dist_digest) PKG_BUILD_STEPS=""; ;; - dist_tarballs) PKG_BUILD_STEPS=""; ;; + dist_digest) exit 0; ;; + dist_tarballs) exit 0; ;; esac; fi; if [ "${ARG_XTRACE:-0}" -eq 1 ]; then |