From f0c954ed79d9d50fc8dfcd8d00439623f8a53c82 Mon Sep 17 00:00:00 2001 From: Ankit Charolia Date: Tue, 18 Jul 2023 18:40:56 +0200 Subject: [PATCH] add command execute message --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 64e3d57..b19516b 100755 --- a/main.go +++ b/main.go @@ -278,7 +278,7 @@ func useGoVersion(version string) { // Update the Go version in the ~/.bashrc file updateGoVersionInBashrc(version) - fmt.Printf("Using Go version %s.\n", version) + fmt.Printf("Using Go version %s.\nPlease make sure to execute: source ~/.bashrc\n", version) } // updateGoVersionInBashrc updates the Go version in the ~/.bashrc file.