mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
13 lines
221 B
Bash
Executable file
13 lines
221 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
pushd ../../lemmy-translations
|
|
git fetch weblate
|
|
git merge weblate/main
|
|
git push
|
|
popd
|
|
|
|
git submodule update --remote
|
|
git add ../crates/utils/translations
|
|
git commit -m"Updating translations."
|
|
git push
|