diff --git a/src/install/PackageManager/install_with_manager.zig b/src/install/PackageManager/install_with_manager.zig index e2ec8a1396..38a049ad09 100644 --- a/src/install/PackageManager/install_with_manager.zig +++ b/src/install/PackageManager/install_with_manager.zig @@ -1621,7 +1621,7 @@ fn handleSecurityAdvisories(manager: *PackageManager, ipc_data: []const u8, pack var reader = buffered.reader(); const first_byte = reader.readByte() catch { - Output.pretty("\nInstallation cancelled.\n\n", .{}); + Output.pretty("\nInstallation cancelled.\n", .{}); Global.exit(1); }; @@ -1656,14 +1656,14 @@ fn handleSecurityAdvisories(manager: *PackageManager, ipc_data: []const u8, pack }; if (!should_continue) { - Output.pretty("\nInstallation cancelled.\n\n", .{}); + Output.pretty("\nInstallation cancelled.\n", .{}); Global.exit(1); } Output.pretty("\nContinuing with installation...\n\n", .{}); } else { Output.pretty("\nSecurity warnings found. Cannot prompt for confirmation (no TTY).\n", .{}); - Output.pretty("Installation cancelled.\n\n", .{}); + Output.pretty("Installation cancelled.\n", .{}); Global.exit(1); } }