pull/297/head
Tony 5 years ago
parent fa91b1f8c2
commit 46ed5d12c1
  1. 5
      tool/kratos-protoc/protoc.go

@ -145,7 +145,7 @@ func latestKratos() (string, error) {
func gopath() (gp string) { func gopath() (gp string) {
gopaths := strings.Split(os.Getenv("GOPATH"), ":") gopaths := strings.Split(os.Getenv("GOPATH"), ":")
if len(gopaths) == 1 { if len(gopaths) == 1 && gopaths[0] != "" {
return gopaths[0] return gopaths[0]
} }
pwd, err := os.Getwd() pwd, err := os.Getwd()
@ -157,6 +157,9 @@ func gopath() (gp string) {
return return
} }
for _, gopath := range gopaths { for _, gopath := range gopaths {
if gopath == "" {
continue
}
absgp, err := filepath.Abs(gopath) absgp, err := filepath.Abs(gopath)
if err != nil { if err != nil {
return return

Loading…
Cancel
Save