Invoke sh with -u (error on unbound variable)

This commit is contained in:
Casey Rodarmor 2016-10-06 16:56:21 -07:00
parent b1d8fdb398
commit 2a721db280

View file

@ -87,7 +87,7 @@ impl<'a> Recipe<'a> {
command = &command[1..];
}
let status = process::Command::new("sh")
.arg("-c")
.arg("-cu")
.arg(command)
.status();
try!(match status {