diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-08-06 15:53:53 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-08-06 15:53:53 +0100 |
commit | 01438f00d44adf33f59da729b347eca60cb461a8 (patch) | |
tree | 474701f6f8cc830247080f87cdb50c38f017a9c9 /do-link | |
parent | 12309732c08ba06733b05d5d2ecfdb0018c89e17 (diff) | |
download | pack-01438f00d44adf33f59da729b347eca60cb461a8.tar.gz pack-01438f00d44adf33f59da729b347eca60cb461a8.tar.xz pack-01438f00d44adf33f59da729b347eca60cb461a8.zip |
implement do-link to simplify linking .do files
Diffstat (limited to 'do-link')
-rwxr-xr-x | do-link | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -e +type=$1 +. "$2" # .do file which we are "interpreting" +redo-ifchange "$0" "link-$type.tool" "${objects[@]}" +shift 2 +. "./link-$type.tool" +"${cmd[@]}" |