Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
prune: Hide command from help output
Browse files Browse the repository at this point in the history
This was always the intent, but it got unintentionally reverted in the
v0.4.1 shuffle.
  • Loading branch information
sdboyer committed Jun 5, 2018
1 parent a6b1e89 commit 902d09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/dep/prune.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func (cmd *pruneCommand) Name() string { return "prune" }
func (cmd *pruneCommand) Args() string { return "" }
func (cmd *pruneCommand) ShortHelp() string { return pruneShortHelp }
func (cmd *pruneCommand) LongHelp() string { return pruneLongHelp }
func (cmd *pruneCommand) Hidden() bool { return false }
func (cmd *pruneCommand) Hidden() bool { return true }

func (cmd *pruneCommand) Register(fs *flag.FlagSet) {
}
Expand Down

0 comments on commit 902d09c

Please sign in to comment.