Skip to content

Commit 8936546

Browse files
committed
Fix extra whitespace at beginning of line in CLI
1 parent df42c0a commit 8936546

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

crates/sshx/src/main.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ fn print_greeting(shell: &str, controller: &Controller) {
4141
if let Some(write_url) = controller.write_url() {
4242
println!(
4343
r#"
44-
{sshx} {version}
44+
{sshx} {version}
4545
46-
{arr} Read-only link: {link_v}
47-
{arr} Writable link: {link_e}
48-
{arr} Shell: {shell_v}
46+
{arr} Read-only link: {link_v}
47+
{arr} Writable link: {link_e}
48+
{arr} Shell: {shell_v}
4949
"#,
5050
sshx = Green.bold().paint("sshx"),
5151
version = Green.paint(&version_str),
@@ -57,10 +57,10 @@ fn print_greeting(shell: &str, controller: &Controller) {
5757
} else {
5858
println!(
5959
r#"
60-
{sshx} {version}
60+
{sshx} {version}
6161
62-
{arr} Link: {link_v}
63-
{arr} Shell: {shell_v}
62+
{arr} Link: {link_v}
63+
{arr} Shell: {shell_v}
6464
"#,
6565
sshx = Green.bold().paint("sshx"),
6666
version = Green.paint(&version_str),

0 commit comments

Comments
 (0)