diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-24 10:27:17 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-24 10:27:17 -0400 |
| commit | e3924adbf3de259023597af4c1f5a52199b71543 (patch) | |
| tree | 056431da927b3510d86ea0d0c6fac64195490bc4 | |
| parent | 7e3e3d07cbe9c4b5d23ad7b1674d51d0f7f4badb (diff) | |
| download | stasis-e3924adbf3de259023597af4c1f5a52199b71543.tar.gz | |
Expose storage.tools_dir to template engine
| -rw-r--r-- | src/stasis_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stasis_main.c b/src/stasis_main.c index 8b13b98..8f4e22e 100644 --- a/src/stasis_main.c +++ b/src/stasis_main.c @@ -248,6 +248,7 @@ int main(int argc, char *argv[]) { tpl_register("storage.build_sources_dir", &ctx.storage.build_sources_dir); tpl_register("storage.build_docker_dir", &ctx.storage.build_docker_dir); tpl_register("storage.results_dir", &ctx.storage.results_dir); + tpl_register("storage.tools_dir", &ctx.storage.tools_dir); tpl_register("conda.installer_baseurl", &ctx.conda.installer_baseurl); tpl_register("conda.installer_name", &ctx.conda.installer_name); tpl_register("conda.installer_version", &ctx.conda.installer_version); |
