Skip to content

Commit

Permalink
refactor: remove shorthand for ignore-filter option
Browse files Browse the repository at this point in the history
  • Loading branch information
5n7-sk committed Dec 15, 2020
1 parent 3bb54df commit 2bd1386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/vin/cmd/cmd_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var getCmd = &cobra.Command{

func init() {
getCmd.Flags().BoolVar(&opt.IgnoreCache, "ignore-cache", false, "ignore cache and install all applications")
getCmd.Flags().BoolVarP(&opt.IgnoreFilter, "ignore-filter", "i", false, "ignore all filters")
getCmd.Flags().BoolVar(&opt.IgnoreFilter, "ignore-filter", false, "ignore all filters")
getCmd.Flags().IntVarP(&opt.Priority, "priority", "p", 0, "minimum priority for applications to install")
getCmd.Flags().BoolVarP(&opt.SelectApps, "select", "s", false, "select applications to install")

Expand Down

0 comments on commit 2bd1386

Please sign in to comment.