From 00c459e9556db4fb9c854f201089b62a99f5e9a6 Mon Sep 17 00:00:00 2001 From: ppaulis Date: Sat, 17 Sep 2016 17:47:46 +0200 Subject: [PATCH] grunt setup --- scripts/compile_translations.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scripts/compile_translations.sh b/scripts/compile_translations.sh index c84ea1f..83525d3 100755 --- a/scripts/compile_translations.sh +++ b/scripts/compile_translations.sh @@ -1,14 +1,16 @@ #!/bin/bash +pwd + if [ -d node_modules/ng_backoffice ]; then pushd node_modules/ng_backoffice - grunt compile_translations - grunt concat + node_modules/.bin/grunt compile_translations + node_modules/.bin/grunt concat fi if [ -d node_modules/ng_client ]; then pushd node_modules/ng_client - grunt compile_translations - grunt concat + node_modules/.bin/grunt compile_translations + node_modules/.bin/grunt concat fi