mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
21 lines
476 B
Bash
Executable file
21 lines
476 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git submodule update --remote
|
|
git add lemmy-docs
|
|
git commit -m"Updating docs"
|
|
git add joinlemmy-translations
|
|
git commit -m"Updating translations"
|
|
git push
|
|
|
|
# look for unused translations
|
|
for langfile in joinlemmy-translations/translations/*.json; do
|
|
lang=$(basename $langfile .json)
|
|
if ! grep -q "\"./translations/$lang\"" src/shared/i18next.ts; then
|
|
echo "Unused language $lang"
|
|
fi
|
|
done
|
|
|
|
new_tag="$1"
|
|
|
|
git tag $new_tag
|
|
git push origin $new_tag
|