From f68b1000f040ace7c266b6c4b5e7c4a8b9a31378 Mon Sep 17 00:00:00 2001 From: Itzhak Bokris Date: Tue, 20 Sep 2022 22:07:19 +0300 Subject: [PATCH] Change rootCmd to return dymension short description (#100) * Change rootCmd to return dymension short description * add github issue reference --- cmd/dymd/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/dymd/main.go b/cmd/dymd/main.go index dcd442368..5480b40eb 100644 --- a/cmd/dymd/main.go +++ b/cmd/dymd/main.go @@ -19,6 +19,8 @@ func main() { app.New, // this line is used by starport scaffolding # root/arguments ) + // see git issue: https://github.com/dymensionxyz/dymension/issues/99 + rootCmd.Short = "Start dYmension app" if err := svrcmd.Execute(rootCmd, app.DefaultNodeHome); err != nil { os.Exit(1) }