MonarcAppFO/scripts/compile_translations.sh

14 lines
285 B
Bash
Raw Normal View History

2016-04-13 17:03:50 +02:00
#!/bin/bash
if [ -d node_modules/ng_backoffice ]; then
pushd node_modules/ng_backoffice
2016-10-06 11:19:13 +02:00
../.bin/grunt compile_translations
../.bin/grunt concat
2016-04-13 17:03:50 +02:00
fi
if [ -d node_modules/ng_client ]; then
pushd node_modules/ng_client
2016-10-06 11:19:13 +02:00
../.bin/grunt compile_translations
../.bin/grunt concat
2016-04-13 17:03:50 +02:00
fi