Commit graph

3 commits

Author SHA1 Message Date
francisco souza
4241f446d8
gobin: use execFile instead of exec to query GOPATH
Should fix the behavior on Windows.
2020-03-01 22:07:49 -05:00
francisco souza
0dbc2e7f12
Fix tests for gobin on Windows 2020-03-01 21:34:51 -05:00
francisco souza
25c870be4d
Add $GOBIN
- Set $GOBIN to $(go env GOPATH)/bin
- Add $GOBIN to the PATH

Should make the setup of tools like golangci-lint or golint work with a
simple `go get`.

Using $GOBIN instead of $GOPATH/bin because the goal is to have GOPATH
not being directly referenced. Also, in the future, GOBIN will have a
default value too, so we would not need to manually set it, just add it
to the path (see discussion in golang/go#23439).

Closes #14.
2020-03-01 21:18:28 -05:00