diff --git a/src/commands/classified.rs b/src/commands/classified.rs index c8122f52db..0f9c2d916a 100644 --- a/src/commands/classified.rs +++ b/src/commands/classified.rs @@ -129,6 +129,7 @@ impl ExternalCommand { let mut arg_string = format!("{}", self.name); for arg in &self.args { + arg_string.push_str(" "); arg_string.push_str(&arg); } let mut process = Exec::shell(&self.name);