@@ -239,7 +239,7 @@ pub fn build(b: *std.Build) !void {
239239
240240 const run = b .addRunArtifact (exe );
241241 if (b .args ) | args | run .addArgs (args );
242- const step = b .step (exe .name , b .fmt ("run ' {s}' " , .{exe .name }));
242+ const step = b .step (exe .name , b .fmt ("Run {s}" , .{exe .name }));
243243 step .dependOn (& run .step );
244244 }
245245 }
@@ -620,7 +620,7 @@ pub fn build(b: *std.Build) !void {
620620
621621 const run = b .addRunArtifact (exe );
622622 if (b .args ) | args | run .addArgs (args );
623- const step = b .step (exe .name , b .fmt ("run ' {s}' " , .{exe .name }));
623+ const step = b .step (exe .name , b .fmt ("Run {s}" , .{exe .name }));
624624 step .dependOn (& run .step );
625625 }
626626
@@ -657,7 +657,7 @@ pub fn build(b: *std.Build) !void {
657657
658658 const run = b .addRunArtifact (exe );
659659 if (b .args ) | args | run .addArgs (args );
660- const step = b .step (exe .name , b .fmt ("run ' {s}' " , .{exe .name }));
660+ const step = b .step (exe .name , b .fmt ("Run {s}" , .{exe .name }));
661661 step .dependOn (& run .step );
662662 }
663663
@@ -694,7 +694,7 @@ pub fn build(b: *std.Build) !void {
694694
695695 const run = b .addRunArtifact (exe );
696696 if (b .args ) | args | run .addArgs (args );
697- const step = b .step (exe .name , b .fmt ("run ' {s}' " , .{exe .name }));
697+ const step = b .step (exe .name , b .fmt ("Run {s}" , .{exe .name }));
698698 step .dependOn (& run .step );
699699 }
700700
@@ -723,7 +723,7 @@ pub fn build(b: *std.Build) !void {
723723
724724 const run = b .addRunArtifact (exe );
725725 if (b .args ) | args | run .addArgs (args );
726- const step = b .step (exe .name , b .fmt ("run ' {s}' " , .{exe .name }));
726+ const step = b .step (exe .name , b .fmt ("Run {s}" , .{exe .name }));
727727 step .dependOn (& run .step );
728728 }
729729
@@ -1034,7 +1034,7 @@ pub fn build(b: *std.Build) !void {
10341034
10351035 const run = b .addRunArtifact (exe );
10361036 if (b .args ) | args | run .addArgs (args );
1037- const step = b .step (exe .name , b .fmt ("run ' {s}' " , .{exe .name }));
1037+ const step = b .step (exe .name , b .fmt ("Run {s}" , .{exe .name }));
10381038 step .dependOn (& run .step );
10391039 }
10401040
@@ -1138,7 +1138,7 @@ pub fn build(b: *std.Build) !void {
11381138 \\
11391139 );
11401140
1141- const step = b .step ("example-c" , "" );
1141+ const step = b .step ("example-c" , "Run src/example.c " );
11421142 step .dependOn (& run .step );
11431143 }
11441144
@@ -1155,7 +1155,7 @@ pub fn build(b: *std.Build) !void {
11551155 \\
11561156 );
11571157
1158- const step = b .step ("example-rb" , "" );
1158+ const step = b .step ("example-rb" , "Run src/example.rb " );
11591159 step .dependOn (& example_ruby .step );
11601160 }
11611161
@@ -1172,7 +1172,7 @@ pub fn build(b: *std.Build) !void {
11721172
11731173 const run = b .addRunArtifact (example_zig );
11741174
1175- const step = b .step ("example-zig" , "" );
1175+ const step = b .step ("example-zig" , "Run src/example.zig " );
11761176 step .dependOn (& run .step );
11771177 }
11781178}
0 commit comments