11 lines
234 B
Bash
11 lines
234 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
command -v tx-cli && COMMAND=tx-cli
|
||
|
command -v tx && COMMAND=tx
|
||
|
|
||
|
$COMMAND pull -t
|
||
|
|
||
|
git add dist/languages/*.ts src/android/app/src/main/res/values*/strings.xml
|
||
|
|
||
|
git commit -m "[dist] update translations from Transifex" -sS
|