From 21710f3423945c5787d5c1d32add09a3f0656bfc Mon Sep 17 00:00:00 2001 From: ppaulis Date: Sun, 18 Sep 2016 10:23:13 +0200 Subject: [PATCH] grunt setup --- scripts/extract_translations.sh | 4 ++-- scripts/link_modules_resources.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/extract_translations.sh b/scripts/extract_translations.sh index 2f435cd..6ba7dfc 100755 --- a/scripts/extract_translations.sh +++ b/scripts/extract_translations.sh @@ -2,11 +2,11 @@ if [ -d node_modules/ng_backoffice ]; then pushd node_modules/ng_backoffice - grunt extract_translations + node_modules/.bin/grunt extract_translations fi if [ -d node_modules/ng_client ]; then pushd node_modules/ng_client - grunt extract_translations + node_modules/.bin/grunt extract_translations fi diff --git a/scripts/link_modules_resources.sh b/scripts/link_modules_resources.sh index 1728c91..4c192b2 100755 --- a/scripts/link_modules_resources.sh +++ b/scripts/link_modules_resources.sh @@ -54,7 +54,7 @@ if [ -d node_modules/ng_backoffice ]; then cd ../.. pushd node_modules/ng_backoffice - grunt concat + node_modules/.bin/grunt concat popd fi @@ -80,7 +80,7 @@ if [ -d node_modules/ng_client ]; then cd ../.. pushd node_modules/ng_client - grunt concat + node_modules/.bin/grunt concat popd fi