commit 250664bea41cc5dde66e3054ca0c1b6e0feab9be (tree)
parent dacd36ca9b193444e9e2ca3f132fccf3e08fb4f9
Author: Andrew Kelley <andrew@ziglang.org>
Date: Tue, 22 Sep 2020 14:56:52 -0700
build runner: allow for a bit longer -D options
so they can display in the --help menu without getting squished.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/special/build_runner.zig b/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 });
}
}