mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 10:09:56 +00:00
10 lines
199 B
Bash
Executable file
10 lines
199 B
Bash
Executable file
#!/bin/bash
|
|
pushd ../lemmy-translations
|
|
git fetch weblate
|
|
git merge weblate/main
|
|
git push
|
|
popd
|
|
git submodule update --remote
|
|
git add lemmy-translations
|
|
git commit -m"Updating translations."
|
|
git push
|