From 16c0593356e0d48fb2608f049d55e6ce487919a2 Mon Sep 17 00:00:00 2001 From: Victor Nogueira Date: Sat, 30 Jul 2022 12:32:46 +0300 Subject: [PATCH] Fix the command name displayed on "--help" --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index e0df87b..7c808cd 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -23,7 +23,7 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ - Use: "rungp", + Use: "run-gp", Short: "start a local dev-environment using a .gitpdod.yaml file", PersistentPreRun: func(cmd *cobra.Command, args []string) { cfg, err := config.ReadInConfig()