Skip to content

Commit

Permalink
Fix an old unnoticed bug in Bisectable
Browse files Browse the repository at this point in the history
This code seems to be bitrotted, but the latest changes were in 2018. It
looks like nobody noticed because we simply had no missing builds.
  • Loading branch information
AlexDaniel committed Oct 9, 2023
1 parent 7e51837 commit 9137dfd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Whateverable/Bisection.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ sub run-bisect(&runner = &standard-runner, #← Something to run on every revi

if $skip-missing-builds and not build-exists $current-commit {
take »»»»» Build does not exist, skip this commit;
return Skip # skip non-existent builds
take get-output(cwd => $repo-cwd, <git bisect>, Skip.lc)<output>;
next
}

my $run-result = &runner( :$current-commit, |%custom);
Expand Down

0 comments on commit 9137dfd

Please sign in to comment.