소스 검색

Merge pull request #120 from dave-tucker/fix-ci

Don't fail the build on coveralls upload
Madhu Venugopal 10 년 전
부모
커밋
d96a409c6a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libnetwork/Makefile

+ 1 - 1
libnetwork/Makefile

@@ -57,7 +57,7 @@ install-deps:
 	go get github.com/mattn/goveralls
 
 coveralls:
-	@goveralls -service circleci -coverprofile=coverage.coverprofile -repotoken $$COVERALLS_TOKEN
+	-@goveralls -service circleci -coverprofile=coverage.coverprofile -repotoken $$COVERALLS_TOKEN
 
 # CircleCI's Docker fails when cleaning up using the --rm flag
 # The following target is a workaround for this