mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
22 lines
385 B
Bash
Executable file
22 lines
385 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pushd ../joinlemmy-translations
|
|
git fetch weblate
|
|
git merge weblate/main
|
|
git push
|
|
popd
|
|
|
|
pushd ../lemmy-translations
|
|
git fetch weblate
|
|
git merge weblate/main
|
|
git push
|
|
|
|
git submodule update --remote
|
|
git add joinlemmy-translations
|
|
git add lemmy-translations
|
|
git add lemmy-instance-stats
|
|
git add lemmy-docs
|
|
git add lemmy-js-client
|
|
|
|
git commit -m"Updating submodules"
|
|
git push
|