google / trillian

A transparent, highly scalable and cryptographically verifiable data store.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go 1.11 tools use $GOFLAGS automatically

RJPercival opened this issue · comments

Our Travis config uses an environment variable called $GOFLAGS to store the flags to pass to some Go commands it uses, e.g.

- go get ${GOFLAGS} -d -t ./...

Go 1.11 will read the $GOFLAGS variable itself so we won't need to use it as part of any commands. This will, however, possibly result in other go commands we use getting these flags where previously they didn't.

(Nothing to do until we move our Travis builds to use Go 1.11)

Also: gometalinter fixed upstream for this.