Commit 250664bea4

Andrew Kelley <andrew@ziglang.org>
2020-09-22 23:56:52
build runner: allow for a bit longer -D options
so they can display in the --help menu without getting squished.
1 parent dacd36c
Changed files (1)
lib
std
lib/std/special/build_runner.zig
@@ -185,7 +185,7 @@ fn usage(builder: *Builder, already_ran_build: bool, out_stream: anytype) !void
                 Builder.typeIdName(option.type_id),
             });
             defer allocator.free(name);
-            try out_stream.print("{s:24} {}\n", .{ name, option.description });
+            try out_stream.print("{s:32} {}\n", .{ name, option.description });
         }
     }