From c20ba95885294c30d2e5a1b87158b70711cbc94f Mon Sep 17 00:00:00 2001 From: Ron Waldon Date: Sun, 24 Apr 2022 13:24:44 +1000 Subject: [PATCH] fix: remove `println!()` from `exec` builtin (#5311) --- crates/nu-command/src/system/exec.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/nu-command/src/system/exec.rs b/crates/nu-command/src/system/exec.rs index 2658291453..9f97210f5b 100644 --- a/crates/nu-command/src/system/exec.rs +++ b/crates/nu-command/src/system/exec.rs @@ -90,7 +90,6 @@ fn exec( let mut command = external_command.spawn_simple_command(&cwd.to_string_lossy().to_string())?; command.current_dir(current_dir); - println!("{:#?}", command); let err = command.exec(); // this replaces our process, should not return Err(ShellError::GenericError(