joinlemmy-site/update_submodules.sh
2022-09-14 11:25:13 -04:00

22 lines
361 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
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