2021-07-04 00:07:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-02-23 02:12:12 +00:00
|
|
|
# Note:
|
|
|
|
# To update lemmy-js-client, first change its branch in your .gitmodules
|
|
|
|
|
2021-07-04 00:07:56 +00:00
|
|
|
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
|
2022-09-14 15:47:24 +00:00
|
|
|
popd
|
2021-07-04 00:07:56 +00:00
|
|
|
|
|
|
|
git submodule update --remote
|
|
|
|
git add joinlemmy-translations
|
|
|
|
git add lemmy-translations
|
2021-08-06 21:48:37 +00:00
|
|
|
git add lemmy-docs
|
2021-08-23 14:58:01 +00:00
|
|
|
git add lemmy-js-client
|
2021-07-04 00:07:56 +00:00
|
|
|
|
|
|
|
git commit -m"Updating submodules"
|
|
|
|
git push
|