1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-07 17:15:30 +02:00

Refactor language pack download script: replace shell script with Python equivalent for consistency and maintainability

This commit is contained in:
mr. M 2025-01-14 00:05:14 +01:00
parent a512948eb0
commit 62df1fbc59
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB

View file

@ -31,9 +31,9 @@ cd $CURRENT_DIR
# Move all the files to the correct location
python3 scripts/copy-language-pack.sh en-US
python3 scripts/copy_language_pack.py en-US
for lang in $(cat ./l10n/supported-languages); do
python3 scripts/copy-language-pack.sh $lang
python3 scripts/copy_language_pack.py $lang
done
wait