mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 20:31:17 +00:00
11 lines
217 B
Bash
11 lines
217 B
Bash
|
#!/bin/bash
|
||
|
pushd ../joinlemmy-translations
|
||
|
git fetch weblate
|
||
|
git merge weblate/main
|
||
|
git push
|
||
|
popd
|
||
|
git submodule update --remote
|
||
|
git add joinlemmy-translations
|
||
|
git commit -m"Updating joinlemmy-translations."
|
||
|
git push
|