aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-04 18:51:45 -0700
committerGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-04 18:51:45 -0700
commitdbabe6785b8e52342c3ee21ac5dc93449d2d74e4 (patch)
treeef80d719d9ea5519603d4e769bde3e3056f40af3
parent5e908c3108873602f5975d959ae0cc26518bc3df (diff)
downloadbun-dbabe6785b8e52342c3ee21ac5dc93449d2d74e4.tar.gz
bun-dbabe6785b8e52342c3ee21ac5dc93449d2d74e4.tar.zst
bun-dbabe6785b8e52342c3ee21ac5dc93449d2d74e4.zip
Tweak outputreserve-commands
Diffstat (limited to '')
-rw-r--r--src/cli.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.zig b/src/cli.zig
index afc489ea0..c293b0ab4 100644
--- a/src/cli.zig
+++ b/src/cli.zig
@@ -837,7 +837,7 @@ const AutoCommand = struct {
pub const ReservedCommand = struct {
pub fn exec() !void {
@setCold(true);
- Output.prettyError("<r><red>Uh-oh<r>. That command is reserved for future use.\n", .{});
+ Output.prettyError("<r><red>Uh-oh<r>. That command is reserved for future use. To run the package.json script with this same name, run:\n\n bun run \\<command\\>\n\n", .{});
Output.flush();
std.process.exit(1);
}