mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-10 00:29:01 +02:00
commit
918eed4df6
@ -145,7 +145,7 @@ func latestKratos() (string, error) {
|
||||
|
||||
func gopath() (gp string) {
|
||||
gopaths := strings.Split(os.Getenv("GOPATH"), ":")
|
||||
if len(gopaths) == 1 {
|
||||
if len(gopaths) == 1 && gopaths[0] != "" {
|
||||
return gopaths[0]
|
||||
}
|
||||
pwd, err := os.Getwd()
|
||||
@ -157,6 +157,9 @@ func gopath() (gp string) {
|
||||
return
|
||||
}
|
||||
for _, gopath := range gopaths {
|
||||
if gopath == "" {
|
||||
continue
|
||||
}
|
||||
absgp, err := filepath.Abs(gopath)
|
||||
if err != nil {
|
||||
return
|
||||
|
@ -187,7 +187,7 @@ func (t Tool) installed() bool {
|
||||
|
||||
func gopath() (gp string) {
|
||||
gopaths := strings.Split(os.Getenv("GOPATH"), ":")
|
||||
if len(gopaths) == 1 {
|
||||
if len(gopaths) == 1 && gopaths[0] != "" {
|
||||
return gopaths[0]
|
||||
}
|
||||
pwd, err := os.Getwd()
|
||||
@ -199,6 +199,9 @@ func gopath() (gp string) {
|
||||
return
|
||||
}
|
||||
for _, gopath := range gopaths {
|
||||
if gopath == "" {
|
||||
continue
|
||||
}
|
||||
absgp, err := filepath.Abs(gopath)
|
||||
if err != nil {
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user