Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit db4717c5c1d3705afa3209b1f8b8399647dc3cb2 Author: Wim <wim@42.be> Date: Wed Nov 07 20:40:09 2018 +0000 Fix travis typo diff --git a/.travis.yml b/.travis.yml index c490871..32aefb5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -327 +327 @@ 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