Auto sorting of locale files

This commit is contained in:
Jamie Curnow
2025-09-25 18:31:00 +10:00
parent e36c1b99a5
commit abdf8866e0
5 changed files with 100 additions and 59 deletions

View File

@@ -0,0 +1,36 @@
#!/bin/bash
set -e -o pipefail
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$DIR/../src" || exit 1
if ! command -v jq &> /dev/null; then
echo "jq could not be found, please install it to sort JSON files."
exit 1
fi
# iterate over all json files in the current directory
for file in *.json; do
if [[ -f "$file" ]]; then
if [[ ! -s "$file" ]]; then
echo "Skipping empty file $file"
continue
fi
if [ "$file" == "lang-list.json" ]; then
continue
fi
# get content of file before sorting
original_content=$(<"$file")
# compare with sorted content
sorted_content=$(jq --tab --sort-keys . "$file")
if [ "$original_content" == "$sorted_content" ]; then
echo "$file is already sorted"
continue
fi
echo "Sorting $file"
jq --tab --sort-keys . "$file" | sponge "$file"
fi
done