summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-11-07 20:40:09 +0100
committerWim <wim@42.be>2018-11-07 20:40:15 +0100
commit06d66a0b2b94869f2e5e82a29f908e420fd6942e (patch)
tree1213831272bac347468b69789ae601ed90e94063 /.travis.yml
parent0e2522279e8671a345c1be6b8b07c0f1a505e23e (diff)
downloadmatterbridge-msglm-06d66a0b2b94869f2e5e82a29f908e420fd6942e.tar.gz
matterbridge-msglm-06d66a0b2b94869f2e5e82a29f908e420fd6942e.tar.bz2
matterbridge-msglm-06d66a0b2b94869f2e5e82a29f908e420fd6942e.zip
Fix travis typo
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index c4908717..32aefb5e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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