修复windows下无法识别到已安装的tool且每次使用tool都会重新安装
@ -180,6 +180,9 @@ func (t Tool) toolPath() string {
name = t.Name
}
gobin := Getenv("GOBIN")
if runtime.GOOS == "windows" {
name += ".exe"
if gobin != "" {
return filepath.Join(gobin, name)