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