5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 03:10:26 +00:00

Fix travis typo

This commit is contained in:
Wim 2018-11-07 20:40:09 +01:00
parent 0e2522279e
commit 06d66a0b2b

View File

@ -32,7 +32,7 @@ before_script:
# flunk the build and immediately stop. It's sorta like having
# set -e enabled in bash.
script:
- test -z "$(go fmt ./...)";)" # Fail if a .go file hasn't been formatted with gofmt
- test -z "$(go fmt ./...)" # Fail if a .go file hasn't been formatted with gofmt
- go test -v -race $PKGS # Run all the tests with the race detector enabled
# - go vet $PKGS # go vet is the official Go static analyzer
- megacheck $PKGS # "go vet on steroids" + linter