Oops, actually needed

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

View File

@ -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);