You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
354 B
Bash
9 lines
354 B
Bash
#!/bin/sh
|
|
|
|
echo 'Cleaning up CrowdIn import'
|
|
|
|
GENERATE_LOCALES_FILE=$PWD/tools/localization/generateLocales.py
|
|
|
|
# Generate Types and find problems if the python script exists with a non-zero exit code then the build will fail
|
|
python3 $GENERATE_LOCALES_FILE --print-problems --error-on-problems --error-old-dynamic-variables --print-old-dynamic-variables
|