I have a test runner that calls go vet --all && go vet --shadow: https://github.com/kevinburke/go-bindata/blob/master/testdata/Makefile
This test runner breaks on tip:
$ go vet --shadow
vet: flag "--shadow" not defined
Run "go help vet" for more information
I'm not sure if the compatibility guarantee extends to flag arguments, but it's a little frustrating that this program broke and it took some searching to figure out how to fix it. Searching Google yields mostly results that expect "go vet --shadow" to work as previously written.
I have a test runner that calls
go vet --all && go vet --shadow: https://github.com/kevinburke/go-bindata/blob/master/testdata/MakefileThis test runner breaks on
tip:I'm not sure if the compatibility guarantee extends to flag arguments, but it's a little frustrating that this program broke and it took some searching to figure out how to fix it. Searching Google yields mostly results that expect "go vet --shadow" to work as previously written.