add missing path
Some checks are pending
continuous-integration/drone/push Build is failing

This commit is contained in:
shimunn 2019-01-13 17:25:29 +01:00
parent a06edf48dd
commit 5879bcc4e6

View File

@ -83,6 +83,7 @@ impl ScriptListener {
fn mkcmd<'a>(&self, args: Vec<&'a str>) -> Command {
let mut cmd = Command::new("/bin/sh");
cmd.arg("-c");
cmd.args((&self.script).to_str());
cmd.arg(format!("\"{}\"", args.join(" ")));
cmd
}