From 1c588514bac38099546810c4b6d8cd28545ce736 Mon Sep 17 00:00:00 2001 From: Joshua Herring Date: Mon, 11 May 2026 08:49:30 -0400 Subject: [PATCH] show error on missing command --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.go b/main.go index 9f739c5..6e5a5e2 100644 --- a/main.go +++ b/main.go @@ -17,10 +17,9 @@ func main() { switch os.Args[1] { case "upload_file": commands.UploadFile() - //upload_file() case "run_command": commands.RunCommand() default: - fmt.Println("HERE") + fmt.Println("Command not found: %s\n", os.Args[1]) } }