From 6d0bbd56fc79ad38a81b287f8e747b6e4da64223 Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Thu, 25 Aug 2022 01:19:49 -0500 Subject: [PATCH] Add back missing newlines for system info printing --- src/cli/commands/client/format.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/cli/commands/client/format.rs b/src/cli/commands/client/format.rs index ed252e5..45a27bd 100644 --- a/src/cli/commands/client/format.rs +++ b/src/cli/commands/client/format.rs @@ -306,12 +306,12 @@ fn format_shell(data: DistantResponseData) -> Output { }) => Output::StdoutLine( format!( concat!( - "Family: {:?}", - "Operating System: {:?}", - "Arch: {:?}", - "Cwd: {:?}", - "Path Sep: {:?}", - "Username: {:?}", + "Family: {:?}\n", + "Operating System: {:?}\n", + "Arch: {:?}\n", + "Cwd: {:?}\n", + "Path Sep: {:?}\n", + "Username: {:?}\n", "Shell: {:?}" ), family, os, arch, current_dir, main_separator, username, shell