修复windows下无法识别到已安装的tool且每次使用tool都会重新安装

pull/524/head
hizzd 5 years ago
parent 7c946dc919
commit 03ec01dde2
  1. 3
      tool/kratos/tool.go

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

Loading…
Cancel
Save