diff options
Diffstat (limited to '')
-rw-r--r-- | src/install/install.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index 842a44b40..ea555eb5d 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -3401,7 +3401,8 @@ pub const PackageManager = struct { .diagnostic = &diag, .allocator = allocator, }) catch |err| { - // Report useful error and exit + clap.help(Output.errorWriter(), params) catch {}; + Output.errorWriter().writeAll("\n") catch {}; diag.report(Output.errorWriter(), err) catch {}; return err; }; |