Better handling of recipes and subprocesses.

This commit is contained in:
Daniel Jones 2013-07-09 12:33:25 -07:00
parent bd5c30c30a
commit fc1d2ebfb8
3 changed files with 82 additions and 49 deletions

View file

@ -259,7 +259,7 @@ func expandBackQuoted(input string, vars map[string][]string) (string, int) {
}
// TODO: handle errors
output, _ := subprocess("sh", nil, input[:j], false, false, true)
output, _ := subprocess("sh", nil, input[:j], true)
return output, (j + 1)
}