summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2017-02-06 15:30:38 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2017-02-06 15:30:38 +0000
commit75cf533cc5d4f85834668baf23956e46424e986a (patch)
treebf6e61f058894561d6dbdfb275e0efb38be55b55 /build.sh
parent3af912d3fb23bdf16c0f428228459d4c7a04d8fd (diff)
downloadmidipix_build-75cf533cc5d4f85834668baf23956e46424e986a.tar.bz2
midipix_build-75cf533cc5d4f85834668baf23956e46424e986a.tar.xz
build.sh: call post_sha256sums() before calling post_tarballs().
subr/post_sha256sums.subr: compute SHA256SUMs only if !${BUILD_SCRIPT_RC} && ${ARG_TARBALL}. subr/post_tarballs.subr: cleanup; include SHA256SUMS in dist tarball.
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 1bd37681..1ef98bde 100755
--- a/build.sh
+++ b/build.sh
@@ -115,7 +115,7 @@ for BUILD_TARGET_LC in $(subst_tgts invariants ${BUILD_TARGETS_META:-world}); do
fi;
done;
if [ "${BUILD_SCRIPT_RC:-0}" -eq 0 ]; then
- post_copy_etc; post_strip; post_tarballs; post_sha256sums;
+ post_copy_etc; post_strip; post_sha256sums; post_tarballs;
fi;
post_build_files;
log_msg info "${BUILD_NFINI} finished, ${BUILD_NSKIP} skipped, and ${BUILD_NFAIL} failed builds in ${BUILD_NBUILT} build script(s).";