optimize template loading

This commit is contained in:
2026-02-16 02:54:15 -07:00
parent 00b067f89a
commit bd91fe5b15
2 changed files with 71 additions and 72 deletions

View File

@@ -20,7 +20,7 @@ fn main() {
specs::compile(&args.devices, &args.env.spec_path, dbg);
for spec in specifications {
let result = tmpls::process_templates(&spec, dbg).ok().unwrap();
let result = RenderedConfig::from_spec(&spec, dbg).ok().unwrap();
output_rendered_configs(result, &args.env.out_path, dbg)
}
}