Open matryer opened 7 years ago
strings.Split(os.Getenv("GOPATH"), ":") should be filepath.SplitList(os.Getenv("GOPATH")) to make it OS independent.
strings.Split(os.Getenv("GOPATH"), ":")
filepath.SplitList(os.Getenv("GOPATH"))
strings.Split(os.Getenv("GOPATH"), ":")
should befilepath.SplitList(os.Getenv("GOPATH"))
to make it OS independent.