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