joinlemmy-site/update_submodules.sh
Dessalines b275ea8d8c
Use typedoc instead of async api. (#58)
* Use typedoc instead of async api.

* Updating for new lemmy docs.

* Updating submodules
2021-08-23 10:58:01 -04:00

27 lines
438 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
popd
pushd ../lemmy-instance-stats
./update.sh
popd
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