From d16cee95d6d853ea70be785a8b634b8a7d96827c Mon Sep 17 00:00:00 2001 From: Hasith Senevirathne Date: Fri, 20 Jun 2025 19:20:33 +0530 Subject: [PATCH 1/2] chore: Fix typo in error message --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 76e5afb9..a7f421c6 100644 --- a/main.go +++ b/main.go @@ -27,7 +27,7 @@ var CLIVersion string func main() { err := os.Setenv("CLIVersion", CLIVersion) if err != nil { - fmt.Println("Failed to fetched CLIVersion") + fmt.Println("Failed to fetch CLIVersion") } rootCmd.Execute() From dbaef4f41ef34191eff615684f25d2090eddbcd7 Mon Sep 17 00:00:00 2001 From: Hasith Senevirathne Date: Fri, 20 Jun 2025 19:37:07 +0530 Subject: [PATCH 2/2] chore: Update error message --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a7f421c6..b7855241 100644 --- a/main.go +++ b/main.go @@ -27,7 +27,7 @@ var CLIVersion string func main() { err := os.Setenv("CLIVersion", CLIVersion) if err != nil { - fmt.Println("Failed to fetch CLIVersion") + fmt.Println("Failed to set CLIVersion") } rootCmd.Execute()