Skip to content

Commit

Permalink
dkirillov/gh-76: Diff command - LoadConfig arg fix (#77)
Browse files Browse the repository at this point in the history
- fixed the use of config.LoadConfig
  • Loading branch information
dkirillov authored May 11, 2023
1 parent 34a4b66 commit 3b9b13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/command/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func NewDiffCommand(d *Dependencies) *cobra.Command {
Long: `Shows difference between current and desired state of the pipeline.`,
RunE: func(cmd *cobra.Command, args []string) error {

settingsBytes, err := config.LoadConfig(d.Project, "render", renderValues)
settingsBytes, err := config.LoadConfig(d.Project, renderValues, "render")

var confErr *config.ConfigurationErr

Expand Down

0 comments on commit 3b9b13c

Please sign in to comment.