summaryrefslogtreecommitdiffstats
path: root/src/common/shell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/shell.rs')
-rw-r--r--src/common/shell.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/shell.rs b/src/common/shell.rs
index 976128b..331eb32 100644
--- a/src/common/shell.rs
+++ b/src/common/shell.rs
@@ -42,6 +42,5 @@ pub fn out() -> Command {
cmd.args(words);
let dash_c = if words_str.contains("cmd.exe") { "/c" } else { "-c" };
cmd.arg(dash_c);
- debug!("shell cmd = `{cmd:#?}`");
cmd
}