Skip to content

Commit

Permalink
Fix error in compile loop (#73976)
Browse files Browse the repository at this point in the history
This is a silly error where I was tracknig the wrong value in the loop
condition. Hadn't noticed because the bad code works as long as
`maxParallel` is greater than 1.
  • Loading branch information
jaredpar authored Jun 13, 2024
1 parent 0b83719 commit 6aca46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/Replay/Replay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static async IAsyncEnumerable<BuildData> BuildAllAsync(

var buildData = await completedTask.ConfigureAwait(false);
yield return buildData;
} while (tasks.Count > 0);
} while (index < compilerCalls.Count);

string GetOutputName(CompilerCall compilerCall)
{
Expand Down

0 comments on commit 6aca46d

Please sign in to comment.