diff options
| author | 2022-12-15 17:03:08 -0800 | |
|---|---|---|
| committer | 2022-12-15 17:03:08 -0800 | |
| commit | 000a0c9dcac3b4fae73fde60fab4d78a4e15e849 (patch) | |
| tree | da14f213c41987e33297e03cc5911374d8a09aba /src/cli/run_command.zig | |
| parent | c1d7ec9564aaa091f46e011f61c1591f9b471a63 (diff) | |
| download | bun-000a0c9dcac3b4fae73fde60fab4d78a4e15e849.tar.gz bun-000a0c9dcac3b4fae73fde60fab4d78a4e15e849.tar.zst bun-000a0c9dcac3b4fae73fde60fab4d78a4e15e849.zip | |
Fix missing error when command not found
Diffstat (limited to 'src/cli/run_command.zig')
| -rw-r--r-- | src/cli/run_command.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/run_command.zig b/src/cli/run_command.zig index 6e0177270..b89c20f57 100644 --- a/src/cli/run_command.zig +++ b/src/cli/run_command.zig @@ -1089,7 +1089,7 @@ pub const RunCommand = struct { } if (comptime log_errors) { - Output.prettyError("<r><red>error:<r> Missing script \"<b>{s}<r>\"\n", .{script_name_to_search}); + Output.prettyError("<r><red>error<r><d>:<r> missing script \"<b>{s}<r>\"\n", .{script_name_to_search}); Global.exit(0); } |
