From 0034837ac58552399a799adbf375df5942411d3b Mon Sep 17 00:00:00 2001 From: Guillaume Lesniak Date: Tue, 25 Oct 2016 09:16:55 +0200 Subject: [PATCH] scripts: Use grunt in PATH for compile_translations --- scripts/compile_translations.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/compile_translations.sh b/scripts/compile_translations.sh index 2de3e76..9c63501 100755 --- a/scripts/compile_translations.sh +++ b/scripts/compile_translations.sh @@ -2,12 +2,12 @@ if [ -d node_modules/ng_backoffice ]; then pushd node_modules/ng_backoffice - ../.bin/grunt compile_translations - ../.bin/grunt concat + grunt compile_translations + grunt concat fi if [ -d node_modules/ng_client ]; then pushd node_modules/ng_client - ../.bin/grunt compile_translations - ../.bin/grunt concat + grunt compile_translations + grunt concat fi