From 62af080e78aeb943399bca35a374bb502e066c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Sun, 30 Apr 2017 12:39:14 +0200 Subject: [PATCH] Fix paths to use local bower/grunt installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- Makefile | 2 +- js/Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b018d1035..82a92837a 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ clean-dist: install-deps: cd js && npm install --deps - cd js && bower install + cd js && ./node_modules/.bin/bower install build: build-js diff --git a/js/Makefile b/js/Makefile index 8c0da9afa..520ccc77b 100644 --- a/js/Makefile +++ b/js/Makefile @@ -1,10 +1,10 @@ build: - grunt build + ./node_modules/.bin/grunt build watch: - grunt watch + ./node_modules/.bin/grunt watch install: npm install - bower install + ./node_modules/.bin/bower install