foodsoft/bin/crowdin-pull

17 lines
371 B
Plaintext
Raw Normal View History

2019-10-26 21:30:51 +02:00
#!/bin/sh
if [ ! "$CROWDIN_API_KEY" ]; then
echo "Please set CROWDIN_API_KEY" 1>&2
exit 1
fi
if ! which crowdin >/dev/null; then
echo "Please install the Crowdin CLI, see https://support.crowdin.com/cli-tool/" 1>&2
exit 1
fi
# add supported locales here (Crowdin language codes)
for locale in de nl fr es-ES; do
crowdin pull -b master --tree -l $locale
done