10 lines
234 B
Bash
Executable file
10 lines
234 B
Bash
Executable file
#!/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
|