cleanup for PR

This commit is contained in:
Zendril 2025-02-04 22:24:52 -05:00
parent e09c11a16a
commit a9487c246f

View File

@ -294,12 +294,14 @@ pub fn build(b: *Build) !void {
} }
} }
for (exercises[starting_exercise..]) |ex| { for (exercises) |ex| {
if (starting_exercise < ex.number()) {
const verify_stepn = ZiglingStep.create(b, ex, work_path, .normal); const verify_stepn = ZiglingStep.create(b, ex, work_path, .normal);
verify_stepn.step.dependOn(prev_step); verify_stepn.step.dependOn(prev_step);
prev_step = &verify_stepn.step; prev_step = &verify_stepn.step;
} }
}
ziglings_step.dependOn(prev_step); ziglings_step.dependOn(prev_step);
const test_step = b.step("test", "Run all the tests"); const test_step = b.step("test", "Run all the tests");