mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
9aa26db28d
* Use specific lemmy-js-client version. Fixes #123 * Add note about lemmy-js-client.
25 lines
443 B
Bash
Executable file
25 lines
443 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Note:
|
|
# To update lemmy-js-client, first change its branch in your .gitmodules
|
|
|
|
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
|
|
popd
|
|
|
|
git submodule update --remote
|
|
git add joinlemmy-translations
|
|
git add lemmy-translations
|
|
git add lemmy-docs
|
|
git add lemmy-js-client
|
|
|
|
git commit -m"Updating submodules"
|
|
git push
|