Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ pub struct FullGenerationPlan {
pub output_dir: PathBuf,
pub config: crate::config::schema::TemplateConfig,
pub variables: BTreeMap<String, Value>,
pub origin: TemplateOrigin,
pub template_dir: PathBuf,
origin: TemplateOrigin,
pub no_hooks: bool,
}

Expand Down Expand Up @@ -143,7 +142,6 @@ pub fn plan_generation(options: GenerateOptions) -> Result<FullGenerationPlan> {
config: resolved.config,
variables,
origin,
template_dir,
no_hooks: options.no_hooks,
})
}
Expand Down