mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-04-01 05:45:29 +01:00
cleanup for PR
This commit is contained in:
parent
e09c11a16a
commit
a9487c246f
1 changed files with 6 additions and 4 deletions
10
build.zig
10
build.zig
|
@ -294,11 +294,13 @@ pub fn build(b: *Build) !void {
|
|||
}
|
||||
}
|
||||
|
||||
for (exercises[starting_exercise..]) |ex| {
|
||||
const verify_stepn = ZiglingStep.create(b, ex, work_path, .normal);
|
||||
verify_stepn.step.dependOn(prev_step);
|
||||
for (exercises) |ex| {
|
||||
if (starting_exercise < ex.number()) {
|
||||
const verify_stepn = ZiglingStep.create(b, ex, work_path, .normal);
|
||||
verify_stepn.step.dependOn(prev_step);
|
||||
|
||||
prev_step = &verify_stepn.step;
|
||||
prev_step = &verify_stepn.step;
|
||||
}
|
||||
}
|
||||
ziglings_step.dependOn(prev_step);
|
||||
|
||||
|
|
Loading…
Reference in a new issue