mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Ignore formatting diffs when checking for POEditor changes
This commit is contained in:
parent
699be19bb9
commit
8720bd154f
1 changed files with 7 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
download_lang() {
|
download_lang() {
|
||||||
|
filename=resources/i18n/"$1".json
|
||||||
url=$(curl -s -X POST https://poeditor.com/api/ \
|
url=$(curl -s -X POST https://poeditor.com/api/ \
|
||||||
-d api_token="${POEDITOR_APIKEY}" \
|
-d api_token="${POEDITOR_APIKEY}" \
|
||||||
-d action="export" \
|
-d action="export" \
|
||||||
|
@ -13,7 +14,12 @@ download_lang() {
|
||||||
echo "Failed to export $1"
|
echo "Failed to export $1"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
curl -sSL "$url" > resources/i18n/"$1".json
|
curl -sSL "$url" > poeditor.json
|
||||||
|
if [ "$(jq -c . < $filename)" != "$(jq -c . < poeditor.json)" ]; then
|
||||||
|
mv poeditor.json "$filename"
|
||||||
|
else
|
||||||
|
rm poeditor.json
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
for file in resources/i18n/*.json; do
|
for file in resources/i18n/*.json; do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue