From 45557383afe19a0a180b3a8568a1d88337dad440 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 12 Apr 2024 09:34:11 -0400 Subject: Expose the output directory to the template engine --- src/main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 0ead157..6608299 100644 --- a/src/main.c +++ b/src/main.c @@ -282,6 +282,7 @@ int main(int argc, char *argv[]) { tpl_register("info.build_name", &ctx.info.build_name); tpl_register("info.build_number", &ctx.info.build_number); tpl_register("storage.tmpdir", &ctx.storage.tmpdir); + tpl_register("storage.output_dir", &ctx.storage.output_dir); tpl_register("storage.delivery_dir", &ctx.storage.delivery_dir); tpl_register("storage.conda_artifact_dir", &ctx.storage.conda_artifact_dir); tpl_register("storage.wheel_artifact_dir", &ctx.storage.wheel_artifact_dir); -- cgit