Skip to content

Commit

Permalink
Ignore missing repos
Browse files Browse the repository at this point in the history
  • Loading branch information
lauris authored Sep 19, 2024
1 parent db9e71b commit e403e40
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion add-metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ def parse(line):
m = gh_repo_regex.search(line)
if m:
[repo_name] = m.groups()
return github_table_row(retrieve_repo(repo_name))
try:
row = github_table_row(retrieve_repo(repo_name))
except Exception:
row = ''
return row
else:
return line.rstrip()

Expand Down

0 comments on commit e403e40

Please sign in to comment.