diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-12-03 16:33:22 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-12-03 16:33:22 +0000 |
commit | 92aaa1790d68caaca4387a835bd5143b100d42fb (patch) | |
tree | 9bbc155b437be1e9a449ba2e6cd748d3f51e3014 | |
parent | acbe84fc106f253693d922881b01a847848047e4 (diff) | |
download | midipix_build-92aaa1790d68caaca4387a835bd5143b100d42fb.tar.bz2 midipix_build-92aaa1790d68caaca4387a835bd5143b100d42fb.tar.xz |
build.sh: correctly check for ${ARG_TARBALL}.
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ buildp_dispatch() { PKG_BUILD_STEPS="$(ex_rtl_lfilter_not \ "${PKG_BUILD_STEPS}" "fetch_git fetch_wget")"; fi; - if [ "${ARG_TARBALL:-0}" -eq 0 ]; then + if [ -z "${ARG_TARBALL}" ]; then case "${_pkg_name}" in dist_digest) PKG_BUILD_STEPS=""; ;; dist_tarballs) PKG_BUILD_STEPS=""; ;; |