Browse Source

Run 'go vet' instead of 'go tool vet' in Travis

Gary Burd 9 years ago
parent
commit
0b8990dd8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -17,5 +17,5 @@ install:
 script:
 script:
   - go get -t -v ./...
   - go get -t -v ./...
   - diff -u <(echo -n) <(gofmt -d .)
   - diff -u <(echo -n) <(gofmt -d .)
-  - go tool vet .
+  - go vet .
   - go test -v -race ./...
   - go test -v -race ./...