Commit 733fde58 authored by Joe Poirier's avatar Joe Poirier Committed by Rob Pike

windows: reset command var to sh for correct error output messages

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/4492043
parent 1dc914bc
......@@ -182,7 +182,7 @@ func getTestFileNames() {
}
}
// parseFiles parses the files and remembers the packages we find.
// parseFiles parses the files and remembers the packages we find.
func parseFiles() {
fileSet := token.NewFileSet()
for _, f := range files {
......@@ -285,6 +285,7 @@ func doRun(argv []string, returnStdout bool) string {
}
cmd += `"` + v + `"`
}
command = "sh"
argv = []string{"sh", "-c", cmd}
}
var err os.Error
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment