diff --git a/src/config.rs b/src/config.rs index 3c79985..790d9cc 100644 --- a/src/config.rs +++ b/src/config.rs @@ -59,6 +59,9 @@ pub fn read_config(repo: &Path) -> Result { lines.push(format!( "config = utils.merge(config, utils.load_toml {old_config:?})" )); + lines.push(format!( + "config = utils.merge(config, config.template_context)" + )) } lines.push("-- Changes can be added to the `config` object".to_owned()); lines.push("".to_owned());