Skip to content

Commit

Permalink
Refactor language pack download script: replace shell script with Pyt…
Browse files Browse the repository at this point in the history
…hon equivalent for consistency and maintainability
  • Loading branch information
mauro-balades committed Jan 13, 2025
1 parent a512948 commit 62df1fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/download-language-packs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 62df1fb

Please sign in to comment.