From 575d12b97e8cdc0085e1a3525ceb15fd9201cf22 Mon Sep 17 00:00:00 2001
From: tatsy <tatsy.mail@gmail.com>
Date: Mon, 2 Feb 2015 15:44:16 +0900
Subject: [PATCH] Fix Makefile

---
 Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index bad2dc8..e08f7bb 100644
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,11 @@ lint:
 				eslint --reset .
 
 coverage:
-	     rm -rf coverage
+	    rm -rf coverage
 			istanbul cover ./node_modules/.bin/_mocha
 
 test-ci: lint
 				istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
+
+.PHONY: lint coverage
+.SILENT: lint
-- 
GitLab