summaryrefslogtreecommitdiffhomepage
path: root/dist/dist_gitref.dist
diff options
context:
space:
mode:
authorLucía Andrea Illanes Albornoz <lucia@luciaillanes.de>2023-02-17 19:29:28 +0100
committerLucía Andrea Illanes Albornoz <lucia@luciaillanes.de>2023-02-17 19:29:28 +0100
commite9fa0774ed2e7e030a68f5b0ae51fe6dd69fe492 (patch)
tree37e46c2578bd8f4f435073db01abc514976da8a8 /dist/dist_gitref.dist
parent56495632fc8bf612766a9c431e37ff27a903e8c6 (diff)
downloadmidipix_build-e9fa0774ed2e7e030a68f5b0ae51fe6dd69fe492.tar.bz2
midipix_build-e9fa0774ed2e7e030a68f5b0ae51fe6dd69fe492.tar.xz
Make everything a bit faster.
0) Issues several prayers and sacrifices to Enki under threat of a terrible deluge sent down by Ellil 1) Convert fork-write/read exprs to be non-forking 2) Pass mostly everything by reference 3) Don't bother cleaning the variable namespace because Bourne shell is an abomination 4) Removes broken ./pkgtool.sh -s, --restart-at, --update-diff & ./build.sh --dump-{in,on-abort} 5) Cleanup
Diffstat (limited to 'dist/dist_gitref.dist')
-rw-r--r--dist/dist_gitref.dist6
1 files changed, 5 insertions, 1 deletions
diff --git a/dist/dist_gitref.dist b/dist/dist_gitref.dist
index 4ebd4124..3d8426bc 100644
--- a/dist/dist_gitref.dist
+++ b/dist/dist_gitref.dist
@@ -3,7 +3,11 @@
#
pkg_dist_gitref_all() {
- (rtl_fileop cd "${MIDIPIX_BUILD_PWD}" && git rev-parse HEAD > "${PREFIX}/build.gitref");
+ local _pdga_group_name="${1}" _pdga_pkg_name="${2}" _pdga_restart_at="${3}";
+
+ (rtl_fileop cd "${MIDIPIX_BUILD_PWD}" &&\
+ git rev-parse HEAD > "${PREFIX}/build.gitref");
+ return "${?}";
};
# vim:filetype=sh