From 7481688a505af5b580952c79e29d784bf289964e Mon Sep 17 00:00:00 2001 From: calvinmvrk Date: Thu, 21 Nov 2024 14:05:45 -0600 Subject: [PATCH] update help logic --- cmd/rootCmd.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/rootCmd.go b/cmd/rootCmd.go index 64b6c1a..dfc28b3 100644 --- a/cmd/rootCmd.go +++ b/cmd/rootCmd.go @@ -9,11 +9,10 @@ import ( ) var rootCmd = &cobra.Command{ - Use: "gh-debug-cli", Short: "A CLI tool for debugging", Long: `This CLI tool allows you to debug your agent by chatting with it locally.`, Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Use 'gh-debug-cli --help' to see available commands") + // fmt.Println("Use 'gh debug-cli --help' to see available commands") }, }