removed unnecessary run condition

This commit is contained in:
praschke
2023-03-18 12:04:24 +00:00
parent 40a7b871be
commit b4f7ead7e6

View File

@@ -62,7 +62,6 @@ pub fn build(b: *std.Build) void {
const triangle_run_cmd = b.addRunArtifact(triangle_exe);
triangle_run_cmd.step.dependOn(b.getInstallStep());
triangle_run_cmd.condition = .always;
const triangle_run_step = b.step("run-triangle", "Run the triangle example");
triangle_run_step.dependOn(&triangle_run_cmd.step);