Skip to content

Commit

Permalink
fix: remove shorthand for provider options
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed Aug 17, 2020
1 parent 85c81e4 commit 76910a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func InitConfig(cmd *cobra.Command) error {
cmd.Flags().StringP("token", "t", "", "provider token")
cmd.Flags().StringArrayP("update", "u", []string{}, "updates the version of a certain files")
cmd.Flags().StringP("provider", "p", "github", "provider token")
cmd.Flags().StringArrayP("provider-opt", "o", []string{}, "options that are passed to the provider plugin")
cmd.Flags().StringArray("provider-opt", []string{}, "options that are passed to the provider plugin")
cmd.Flags().String("changelog", "", "creates a changelog file")
cmd.Flags().String("match", "", "only consider tags matching the given glob(7) pattern, excluding the \"refs/tags/\" prefix.")
cmd.Flags().String("maintained-version", "", "set the maintained version as base for new releases")
Expand Down

0 comments on commit 76910a7

Please sign in to comment.