Skip to content

Commit 3b9b13c

Browse files
authored
dkirillov/gh-76: Diff command - LoadConfig arg fix (#77)
- fixed the use of config.LoadConfig
1 parent 34a4b66 commit 3b9b13c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/command/diff.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func NewDiffCommand(d *Dependencies) *cobra.Command {
2626
Long: `Shows difference between current and desired state of the pipeline.`,
2727
RunE: func(cmd *cobra.Command, args []string) error {
2828

29-
settingsBytes, err := config.LoadConfig(d.Project, "render", renderValues)
29+
settingsBytes, err := config.LoadConfig(d.Project, renderValues, "render")
3030

3131
var confErr *config.ConfigurationErr
3232

0 commit comments

Comments
 (0)