diff options
author | Jakob Unterwurzacher | 2019-03-02 14:39:03 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2019-03-02 14:39:03 +0100 |
commit | ddcc1fb3aa6bcbecf26f537323dd71889873b48f (patch) | |
tree | 293c1e5cce5221888e41e2cf8ea522e9b329cb4a /test.bash | |
parent | 173218895c55f381750408d9452d118b8c574f58 (diff) |
Go 1.12 dropped "go tool vet", use "go vet" instead
Also add Go 1.12 to Travis.
Diffstat (limited to 'test.bash')
-rwxr-xr-x | test.bash | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ if ! go tool | grep vet > /dev/null ; then elif [[ -d vendor ]] ; then echo "vendor directory exists, skipping 'go tool vet'" else - go tool vet -all -shadow . + go vet . fi # We don't want all the subprocesses |