| author | |
| committer | |
| log | 81376e72057026464e1c17330666d4fb3c5a7ce0 |
| tree | 8762ffbb6c49cc8f46986f4583c728f11f266445 |
| parent | 8acbfafefb635390f6b4da102966b5c4a2f3332e |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/build_runner.zig+1-1| ... | ... | @@ -309,7 +309,7 @@ fn runStepNames( |
| 309 | 309 | } |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | const starting_steps = step_stack.items; | |
| 312 | const starting_steps = try b.allocator.dupe(*Step, step_stack.items); | |
| 313 | 313 | for (starting_steps) |s| { |
| 314 | 314 | checkForDependencyLoop(b, s, &step_stack) catch |err| switch (err) { |
| 315 | 315 | error.DependencyLoopDetected => return error.UncleanExit, |