Dont change std{out,err,in} in passToGit

This should be done in show instead
This commit is contained in:
morganamilo 2018-08-09 19:44:56 +01:00
parent 86ef1ec077
commit 8cb800c6d1
No known key found for this signature in database
GPG Key ID: 6FE9E7996B0B082E

View File

@ -119,6 +119,5 @@ func passToGit(dir string, _args ...string) *exec.Cmd {
args = append(args, _args...)
cmd := exec.Command(config.GitBin, args...)
cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
return cmd
}