mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 21:32:05 +00:00
Upgrade webkit (#9885)
* span * remove JSStringIsEqualToString * bump webkit tag * span literal * undo * fix windows build * Update JSStringDecoder.cpp * Update JSStringDecoder.cpp * Update JSStringDecoder.cpp --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
@@ -109,19 +109,19 @@ pub const ShellErr = union(enum) {
|
||||
defer this.deinit(bun.default_allocator);
|
||||
switch (this) {
|
||||
.sys => |err| {
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed to due to error: <b>bunsh: {s}: {}<r>", .{ err.message, err.path });
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed due to error: <b>bunsh: {s}: {}<r>", .{ err.message, err.path });
|
||||
bun.Global.exit(1);
|
||||
},
|
||||
.custom => |custom| {
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed to due to error: <b>{s}<r>", .{custom});
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed due to error: <b>{s}<r>", .{custom});
|
||||
bun.Global.exit(1);
|
||||
},
|
||||
.invalid_arguments => |invalid_arguments| {
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed to due to error: <b>bunsh: invalid arguments: {s}<r>", .{invalid_arguments.val});
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed due to error: <b>bunsh: invalid arguments: {s}<r>", .{invalid_arguments.val});
|
||||
bun.Global.exit(1);
|
||||
},
|
||||
.todo => |todo| {
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed to due to error: <b>TODO: {s}<r>", .{todo});
|
||||
bun.Output.prettyErrorln("<r><red>error<r>: Failed due to error: <b>TODO: {s}<r>", .{todo});
|
||||
bun.Global.exit(1);
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user