diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-17T01·49+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-17T01·49+0100 |
commit | cf8cd640c1adf74a3706efbcb0ea4625da106fb2 (patch) | |
tree | c24218b839cdf3f9f2bfdece91d0062db3f9f287 /bin/__dispatch.sh | |
parent | 3a7434a08827a05df20be446e87d7aa379e2c87f (diff) |
feat(bin): Add ninja & meson CLI tools r/723
Diffstat (limited to 'bin/__dispatch.sh')
-rwxr-xr-x | bin/__dispatch.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/__dispatch.sh b/bin/__dispatch.sh index 7988f16b77cb..7a18b8b834a7 100755 --- a/bin/__dispatch.sh +++ b/bin/__dispatch.sh @@ -38,6 +38,12 @@ case "${TARGET_TOOL}" in rebuilder) attr="ops.nixos.rebuilder" ;; + meson) + attr="third_party.meson" + ;; + ninja) + attr="third_party.ninja" + ;; *) echo "The tool '${TARGET_TOOL}' is currently not installed in this repository." exit 1 |