1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-24 03:46:37 +02:00

Merge pull request #524 from hizzd/master

修复windows下无法识别到已安装的tool且每次使用tool都会重新安装
This commit is contained in:
Terry.Mao 2020-03-28 16:05:36 +08:00 committed by GitHub
commit 00aea6ffd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
}