Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #82 from rcousineau-xandr/unswallow-error
Browse files Browse the repository at this point in the history
unswallow this error on startup
  • Loading branch information
John Esmet authored Aug 1, 2019
2 parents 3b54788 + f30a191 commit 8d0129b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func GetAnkhConfig(ctx *ankh.ExecutionContext, configPath string) (ankh.AnkhConf
func GetAnkhConfigWithDefaults(ctx *ankh.ExecutionContext, configPath string) (ankh.AnkhConfig, error) {
ankhConfig, err := GetAnkhConfig(ctx, configPath)
if err != nil {
return ankh.AnkhConfig{}, nil
return ankh.AnkhConfig{}, err
}

// Set default helm and kubectl commands
Expand Down

0 comments on commit 8d0129b

Please sign in to comment.