feat: Print GitHub URL when processing each language

This commit is contained in:
Paul Gauthier (aider) 2025-03-12 13:55:17 -07:00
parent 5f125c1812
commit 011e0fd109

View file

@ -67,10 +67,10 @@ def main():
total = len(lang_defs) total = len(lang_defs)
for lang, config in lang_defs.items(): for lang, config in lang_defs.items():
print(f"Processing {lang}...")
# Extract repo URL from the config # Extract repo URL from the config
repo_url = config.get("repo") repo_url = config.get("repo")
print(f"Processing {lang} ({repo_url})...")
if not repo_url: if not repo_url:
print(f"Skipping {lang}: No repository URL found") print(f"Skipping {lang}: No repository URL found")
continue continue