]> Untitled Git - lemmy.git/blob - scripts/update_translations.sh
work around race condition on community fetch (#3414)
[lemmy.git] / scripts / update_translations.sh
1 #!/usr/bin/env bash
2 set -e
3
4 pushd ../../lemmy-translations
5 git fetch weblate
6 git merge weblate/main
7 git push
8 popd
9
10 git submodule update --remote
11 git add ../crates/utils/translations
12 git commit -m"Updating translations."
13 git push