Add back missing newlines for system info printing

pull/137/head
Chip Senkbeil 2 years ago
parent 56a030e6dd
commit 6d0bbd56fc
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -306,12 +306,12 @@ fn format_shell(data: DistantResponseData) -> Output {
}) => Output::StdoutLine( }) => Output::StdoutLine(
format!( format!(
concat!( concat!(
"Family: {:?}", "Family: {:?}\n",
"Operating System: {:?}", "Operating System: {:?}\n",
"Arch: {:?}", "Arch: {:?}\n",
"Cwd: {:?}", "Cwd: {:?}\n",
"Path Sep: {:?}", "Path Sep: {:?}\n",
"Username: {:?}", "Username: {:?}\n",
"Shell: {:?}" "Shell: {:?}"
), ),
family, os, arch, current_dir, main_separator, username, shell family, os, arch, current_dir, main_separator, username, shell

Loading…
Cancel
Save