Skip to content

Commit

Permalink
Remove duplicate "defaults" statement (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo authored Jul 30, 2024
1 parent ebb7f24 commit 93f9728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (c *UpgradeCommand) Flags() *flag.FlagSet {
"maximum number of concurrent resolutions")
f.StringVar(&c.flagParser, "parser", "actions", "parser to use")
f.StringVar(&c.flagOut, "out", "", "output path (defaults to input file)")
f.BoolVar(&c.flagPin, "pin", true, "pin resolved upgraded versions (defaults to true)")
f.BoolVar(&c.flagPin, "pin", true, "pin resolved upgraded versions")

return f
}
Expand Down

0 comments on commit 93f9728

Please sign in to comment.