Redirect cmds output to stdout.

This commit is contained in:
Vladimir Mihailenco 2015-01-30 15:46:17 +02:00
parent 95cd890e40
commit 15a90c831b
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ func sortStrings(slice []string) []string {
func execCmd(name string, args ...string) (*os.Process, error) {
cmd := exec.Command(name, args...)
if false {
if true {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
}