From dcfc888f50b3eb30d4380d0db331b0e3fb1fbb7e Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 23 May 2021 22:07:40 -0700 Subject: [PATCH] cli: remove "Done" message at end of git clone It's probably obvious that the cloning is done when the command finishes. --- src/commands.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index f8b208a1a..f47b9b397 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -2306,7 +2306,6 @@ fn cmd_git_clone( } })?; tx.commit(); - writeln!(ui, "Done")?; Ok(()) }