Invoke sh with -u (error on unbound variable)

This commit is contained in:
Casey Rodarmor 2016-10-06 16:56:21 -07:00
parent bd8b12db93
commit b5cac00ffc

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 {