Squashed 'tools/' changes from c407250..e89b0b1

e89b0b1 Thingdoer
REVERT: c407250 Thingdoer

git-subtree-dir: tools
git-subtree-split: e89b0b18d6ac114c10021830eda90f8389b92eb2
This commit is contained in:
Tom Wilkie
2016-05-19 10:50:52 +01:00
parent f45e265f71
commit 28261e03ee

View File

@@ -23,7 +23,7 @@ type thing struct {
func (t *thing) run() {
var out bytes.Buffer
cmd := exec.Command("/bin/sh", "-c", t.Command)
cmd := exec.Command("/bin/bash", "-c", t.Command)
cmd.Env = os.Environ()
cmd.Stdout = &out
cmd.Stderr = &out