mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
e755b7cc4e
* Adding about page * Updating submodules * Updating submodules * Fix adding lemmy-docs to update_submodules * Externalized about page text.
26 lines
414 B
Bash
Executable file
26 lines
414 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 commit -m"Updating submodules"
|
|
git push
|