From 54dd4aaaadff95e71503141746d82090d5c434d6 Mon Sep 17 00:00:00 2001 From: Xavier Lucas Date: Fri, 9 Sep 2016 10:28:33 +0200 Subject: [PATCH] Fix travis build Signed-off-by: Xavier Lucas --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index af40990..cd9a901 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,5 @@ install: true script: - go install - - 'if [ "$TRAVIS_PULL_REQUEST" = "false"]; then go test -v -covermode=count -coverprofile=profile.cov github.com/ovh/svfs/svfs; fi' - - 'if [ "$TRAVIS_PULL_REQUEST" = "false"]; then $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=svfs; fi' + - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then go test -v -covermode=count -coverprofile=profile.cov github.com/ovh/svfs/svfs; fi' + - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=svfs; fi'