From 902d09c4daa3cafc67d1e96deceba5eaba5cbca0 Mon Sep 17 00:00:00 2001 From: sam boyer Date: Mon, 4 Jun 2018 23:39:07 -0400 Subject: [PATCH] prune: Hide command from help output This was always the intent, but it got unintentionally reverted in the v0.4.1 shuffle. --- cmd/dep/prune.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dep/prune.go b/cmd/dep/prune.go index 08d86cf202..30f3efb5b7 100644 --- a/cmd/dep/prune.go +++ b/cmd/dep/prune.go @@ -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) { }