Adrià Vilanova MartÃnez | 73c01d4 | 2021-06-08 13:57:36 +0200 | [diff] [blame] | 1 | #!/bin/bash |
2 | # | ||||
3 | # Uploads source files to Crowdin for translation. | ||||
4 | |||||
5 | if [[ $(git diff --stat) != '' ]]; then | ||||
6 | echo 'The git tree is dirty. The source file has not been uploaded.' | ||||
7 | exit 1 | ||||
8 | fi | ||||
9 | |||||
10 | crowdin upload -c crowdin.yml |