MonarcAppFO/scripts/extract_translations.sh

13 lines
259 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-09-18 10:23:13 +02:00
node_modules/.bin/grunt extract_translations
2016-04-13 17:03:50 +02:00
fi
if [ -d node_modules/ng_client ]; then
pushd node_modules/ng_client
2016-09-18 10:23:13 +02:00
node_modules/.bin/grunt extract_translations
2016-04-13 17:03:50 +02:00
fi