Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

Commit

Permalink
fix bash conditional
Browse files Browse the repository at this point in the history
Previous conditional always evaluated to true.  Oops.
  • Loading branch information
jonlawlor committed Nov 5, 2014
1 parent 02110e4 commit a7dde01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -49,7 +49,7 @@ script:
- go build -x -v ./...
- go test -x -v ./...
- diff <(gofmt -d .) <("")
- if [[ $TRAVIS_SECURE_ENV_VARS ]]; then bash test-coverage.sh; fi
- if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then bash test-coverage.sh; fi


after_failure: failure
Expand Down

0 comments on commit a7dde01

Please sign in to comment.