Skip to content

Commit

Permalink
Make server command hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
lox committed Dec 22, 2017
1 parent bed5259 commit c2c7bfd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ type ServerCommandInput struct {
func ConfigureServerCommand(app *kingpin.Application) {
input := ServerCommandInput{}

cmd := app.Command("server", "Run an ec2 instance role server locally")
cmd := app.Command("server", "Run an ec2 instance role server locally").
Hidden()

cmd.Action(func(c *kingpin.ParseContext) error {
ServerCommand(app, input)
return nil
Expand Down

0 comments on commit c2c7bfd

Please sign in to comment.