@@ -148,7 +148,7 @@ def install(repo, ctx, repo_names, all_repos):
148
148
@pass_repo
149
149
def update (repo , ctx , repo_names , all_repos ):
150
150
"""Update cloned repositories with `git pull`."""
151
- repos , url_pattern , _ , _ = get_repos ("pyproject.toml" )
151
+ repos , url_pattern , _ = get_repos ("pyproject.toml" )
152
152
if repo_names :
153
153
for repo_name in repo_names :
154
154
for repo_entry in repos :
@@ -404,7 +404,7 @@ def test(
404
404
@pass_repo
405
405
def status (repo , ctx , repo_names , all_repos , reset ):
406
406
"""Repository status."""
407
- repos , url_pattern , _ , _ = get_repos ("pyproject.toml" )
407
+ repos , url_pattern , _ = get_repos ("pyproject.toml" )
408
408
if repo_names :
409
409
for repo_name in repo_names :
410
410
not_found = set ()
@@ -414,6 +414,7 @@ def status(repo, ctx, repo_names, all_repos, reset):
414
414
== repo_name
415
415
):
416
416
repo_status (repo_entry , url_pattern , repo , reset = reset )
417
+ return
417
418
else :
418
419
not_found .add (repo_name )
419
420
click .echo (f"Repository '{ not_found .pop ()} ' not found." )
0 commit comments