Commit f7d72ce881

snoire <snoire@qq.com>
2024-06-20 10:47:40
build runner: add missing 'new' option to --summary error hint
1 parent f73be12
Changed files (1)
lib
lib/compiler/build_runner.zig
@@ -181,7 +181,7 @@ pub fn main() !void {
                 const next_arg = nextArg(args, &arg_idx) orelse
                     fatalWithHint("expected [all|new|failures|none] after '{s}'", .{arg});
                 summary = std.meta.stringToEnum(Summary, next_arg) orelse {
-                    fatalWithHint("expected [all|failures|none] after '{s}', found '{s}'", .{
+                    fatalWithHint("expected [all|new|failures|none] after '{s}', found '{s}'", .{
                         arg, next_arg,
                     });
                 };