From 26b45ecfae8c15f242a9b29abec5a49b9045f97e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 2 Apr 2024 18:08:56 -0400 Subject: Move system.{arch,platform} template registrations into delivery_init_platform() --- src/main.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 8cd678f..398ac46 100644 --- a/src/main.c +++ b/src/main.c @@ -252,8 +252,6 @@ int main(int argc, char *argv[]) { tpl_register("conda.installer_version", &ctx.conda.installer_version); tpl_register("conda.installer_arch", &ctx.conda.installer_arch); tpl_register("conda.installer_platform", &ctx.conda.installer_platform); - tpl_register("system.arch", &ctx.system.arch); - tpl_register("system.platform", &ctx.system.platform[DELIVERY_PLATFORM_RELEASE]); tpl_register("deploy.jfrog.repo", &globals.jfrog.repo); tpl_register("deploy.docker.registry", &ctx.deploy.docker.registry); tpl_register("workaround.tox_posargs", &globals.workaround.tox_posargs); -- cgit