build runner: allow for a bit longer -D options

so they can display in the --help menu without getting squished.
This commit is contained in:
Andrew Kelley 2020-09-22 14:56:52 -07:00
parent dacd36ca9b
commit 250664bea4

View File

@ -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 });
}
}