Skip to content

Commit

Permalink
Fixed calling incorrect function in cmd/generate.go
Browse files Browse the repository at this point in the history
  • Loading branch information
davidallendj committed Jul 28, 2024
1 parent 5555d1c commit bc6eac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func RunTargets(config *configurator.Config, args []string, targets ...string) {
Target: target,
Verbose: verbose,
}
outputBytes, err := generator.Generate(config, params)
outputBytes, err := generator.GenerateWithTarget(config, params)
if err != nil {
fmt.Printf("failed to generate config: %v\n", err)
os.Exit(1)
Expand Down

0 comments on commit bc6eac3

Please sign in to comment.