mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-02 22:55:37 +00:00
cleanup for PR
This commit is contained in:
parent
e09c11a16a
commit
a9487c246f
|
@ -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");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user