divan / gobenchui

UI for overview of your Golang package benchmarks progress.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to go get

montanaflynn opened this issue · comments

When installing through go get I get the following (go version go1.4.2 linux/amd64):

$ go get github.com/divan/gobenchui
# github.com/divan/gobenchui
Development/go/src/github.com/divan/gobenchui/benchtool.go:25: undefined: os.LookupEnv
Development/go/src/github.com/divan/gobenchui/gopath.go:11: undefined: os.LookupEnv

Yes, os.LookupEnv appeared in Go1.5.

Replaced with os.Getenv for compatibility. Please update.

Thanks