From 62df1fbc59fda52fb4e527167fde607e6fb059ae Mon Sep 17 00:00:00 2001 From: "mr. M" Date: Tue, 14 Jan 2025 00:05:14 +0100 Subject: [PATCH] Refactor language pack download script: replace shell script with Python equivalent for consistency and maintainability --- scripts/download-language-packs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/download-language-packs.sh b/scripts/download-language-packs.sh index 3790668e..f59e9631 100644 --- a/scripts/download-language-packs.sh +++ b/scripts/download-language-packs.sh @@ -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