diff --git a/command/root.go b/command/root.go index 5c0aca9..f1f717f 100644 --- a/command/root.go +++ b/command/root.go @@ -17,8 +17,9 @@ func MakeRootCommand(migrations *golembic.Migrations) (*cobra.Command, error) { } cmd := &cobra.Command{ - Use: "golembic", - Short: "Manage database migrations for Go codebases", + Use: "golembic", + Short: "Manage database migrations for Go codebases", + SilenceUsage: true, } manager := &golembic.Manager{Sequence: migrations}