aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}