Skip to content

Commit

Permalink
tc
Browse files Browse the repository at this point in the history
  • Loading branch information
clee2000 committed Oct 8, 2024
1 parent 07ec511 commit f81f5fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/scripts/fetch_latest_green_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ def get_latest_green_commit(
) -> Optional[str]:
for commit in commits:
eprint(f"Checking {commit}")
is_green, msg = is_green(commit, requires, results)
if is_green:
green, msg = is_green(commit, requires, results)
if green:
eprint("GREEN")
return commit
else:
Expand Down

0 comments on commit f81f5fd

Please sign in to comment.