From 7377a2e2aa26f3716f33c9ed3de4e6fbec390f05 Mon Sep 17 00:00:00 2001 From: Olivier Louvignes <olivier@mg-crea.com> Date: Thu, 28 Feb 2013 13:00:31 +0100 Subject: [PATCH] use local jshint in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 620af52590..b5bf11c7a3 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ build: @echo "\n${HR}" @echo "Building Bootstrap..." @echo "${HR}\n" - @jshint js/*.js --config js/.jshintrc - @jshint js/tests/unit/*.js --config js/.jshintrc + @./node_modules/.bin/jshint js/*.js --config js/.jshintrc + @./node_modules/.bin/jshint js/tests/unit/*.js --config js/.jshintrc @echo "Running JSHint on javascript... ${CHECK} Done" @./node_modules/.bin/recess --compile ${BOOTSTRAP_LESS} > ${BOOTSTRAP} @./node_modules/.bin/recess --compile ${BOOTSTRAP_RESPONSIVE_LESS} > ${BOOTSTRAP_RESPONSIVE} -- GitLab