Skip to content

Commit

Permalink
Reorder build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
DrDeano committed Apr 7, 2021
1 parent c59cf0f commit b1e690b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ pub fn build(b: *Builder) !void {

const make_bootable = b.addSystemCommand(&[_][]const u8{ "./limine/limine-install", boot_drive_image_path });

make_iso.step.dependOn(&make_boot_drive_step.step);
make_bootable.step.dependOn(&make_iso.step);
make_bootable.step.dependOn(&ramdisk_step.step);
make_boot_drive_step.step.dependOn(&make_iso.step);
make_boot_drive_step.step.dependOn(&ramdisk_step.step);
make_bootable.step.dependOn(&make_boot_drive_step.step);
b.default_step.dependOn(&make_bootable.step);
},
else => {},
Expand Down

0 comments on commit b1e690b

Please sign in to comment.