You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/scripts/update_translations.sh

14 lines
229 B
Bash

#!/usr/bin/env bash
set -e
pushd ../../lemmy-translations
git fetch weblate
git merge weblate/main
git push
popd
git submodule update --remote
git add ../crates/utils/translations
git commit -m"Updating translations."
git push