pmorie / osb-starter-pack

A quickstart for making a new Open Service Broker
Apache License 2.0
69 stars 47 forks source link

Fixed calls to `$GOPATH` #109

Open mattalexander-pantheon opened 3 years ago

mattalexander-pantheon commented 3 years ago

Since Go 1.8, the $GOPATH environment variable has been optional. To reliably get the user's value, or the default, call go env.

https://golang.org/doc/go1.8#gopath

mattalexander-pantheon commented 3 years ago

Bump