From a251b99297e1e1a127fbab9917ade9a97b54b9b3 Mon Sep 17 00:00:00 2001 From: Jason Campbell Date: Sun, 27 Mar 2016 23:05:30 -0700 Subject: [PATCH] Prevent coveralls jank from breaking the build. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ff316c..e553a3a 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,8 @@ coverage: node_modules index.js test/index.js node_modules .PHONY: coveralls coveralls: node_modules coverage - @istanbul report lcov && (cat coverage/lcov.info | coveralls) + @istanbul report lcov + (cat coverage/lcov.info | coveralls) || exit 0 .PHONY: travis travis: test coveralls