diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-21 00:52:11 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-21 00:52:11 +0100 |
commit | 9f7e0ed031ba8cd3f4bdbb3cb41587ec763d21d4 (patch) | |
tree | 1d3fc8ef9da617598ae04fee615e56a672f071b2 /hooks | |
parent | 45cb532fb674aa09c4f3df228ace8b47268284e9 (diff) | |
download | Nix-9f7e0ed031ba8cd3f4bdbb3cb41587ec763d21d4.tar.gz Nix-9f7e0ed031ba8cd3f4bdbb3cb41587ec763d21d4.tar.zst Nix-9f7e0ed031ba8cd3f4bdbb3cb41587ec763d21d4.zip |
Add tiv program
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/tiv_builder.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hooks/tiv_builder.sh b/hooks/tiv_builder.sh new file mode 100644 index 0000000..ea16682 --- /dev/null +++ b/hooks/tiv_builder.sh | |||
@@ -0,0 +1,8 @@ | |||
1 | orig=$(declare -f preConfigure) | ||
2 | new_name="preConfigure2 ${orig#preConfigure}" | ||
3 | eval "$new_name" | ||
4 | |||
5 | preConfigure() { | ||
6 | preConfigure2 || true | ||
7 | } | ||
8 | |||