mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 11:51:17 +00:00
21 lines
482 B
Bash
Executable file
21 lines
482 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Update all the submodules and translations
|
|
./update_submodules.sh
|
|
|
|
yarn crawl
|
|
git add "src/shared/instance_stats.ts"
|
|
git commit -m "Crawl instance statistics"
|
|
|
|
# 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
|