Remove unnecessary step

This commit is contained in:
Jonathan Turner 2019-06-01 15:13:08 +12:00
parent b8d8f82cda
commit 185f380b0b

View File

@ -129,7 +129,6 @@ 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);