Skip to content

Commit

Permalink
Merge pull request #102 from MikaelSmith/fix-release-update
Browse files Browse the repository at this point in the history
Fix 'release update --yaml-dir'
  • Loading branch information
dexhorthy authored Mar 9, 2020
2 parents 21e7b60 + e0e5a8f commit a41933c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/release_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (r *runners) releaseUpdate(cmd *cobra.Command, args []string) error {
}

if r.args.updateReleaseYamlDir != "" {
r.args.updateReleaseYaml, err = readYAMLDir(r.args.createReleaseYamlDir)
r.args.updateReleaseYaml, err = readYAMLDir(r.args.updateReleaseYamlDir)
if err != nil {
return errors.Wrap(err, "read yaml dir")
}
Expand Down

0 comments on commit a41933c

Please sign in to comment.