From 011e0fd10933358711e5a6a90bcda93873e20cfa Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 12 Mar 2025 13:55:17 -0700 Subject: [PATCH] feat: Print GitHub URL when processing each language --- scripts/tsl_pack_langs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tsl_pack_langs.py b/scripts/tsl_pack_langs.py index 95bc2a547..30c7a85a1 100755 --- a/scripts/tsl_pack_langs.py +++ b/scripts/tsl_pack_langs.py @@ -67,10 +67,10 @@ def main(): total = len(lang_defs) for lang, config in lang_defs.items(): - print(f"Processing {lang}...") - # Extract repo URL from the config repo_url = config.get("repo") + print(f"Processing {lang} ({repo_url})...") + if not repo_url: print(f"Skipping {lang}: No repository URL found") continue