From 66bdc8b12412057dc7eead991bdb355300dbf6fc Mon Sep 17 00:00:00 2001 From: Hritik Vijay Date: Thu, 21 Sep 2023 01:31:13 +0530 Subject: [PATCH] Use go install instead of garble install garble install command does not exist --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1dd2fb5..fb3cfe6 100644 --- a/main.go +++ b/main.go @@ -306,7 +306,7 @@ func goVersionOK() bool { if semver.Compare(builtVersionSemver, sharedCache.GoVersionSemver) < 0 { fmt.Fprintf(os.Stderr, ` garble was built with %q and is being used with %q; rebuild it with a command like: - garble install mvdan.cc/garble@latest + go install mvdan.cc/garble@latest `[1:], builtVersionFull, toolchainVersionFull) return false }