From 758c048d5bb17293ed64a3ec5d5903ed090dfea2 Mon Sep 17 00:00:00 2001 From: Morten Siebuhr Date: Sun, 24 Aug 2014 14:22:07 +0200 Subject: [PATCH] Clean up paths in Makefile. --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index fccd0a8..6fbbb4e 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,9 @@ -PATH:=./node_modules/.bin:${PATH} - .PHONY: all test lint all: lint test test: - mocha -R spec + ./node_modules/.bin/mocha -R spec lint: - jshint lib/ test/ + ./node_modules/.bin/jshint lib/ test/