mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
Fix stderr redirection
Seems that there's a problem in the Stdout/Stderr/Stdin vars assignments, probably copy-paste issue.
This commit is contained in:
parent
fab7ca2b58
commit
a63c660f28
1 changed files with 1 additions and 1 deletions
|
@ -813,7 +813,7 @@ func (gui *Gui) runSubprocess(cmdObj oscommands.ICmdObj) error { //nolint:unpara
|
|||
|
||||
subprocess := cmdObj.GetCmd()
|
||||
subprocess.Stdout = os.Stdout
|
||||
subprocess.Stderr = os.Stdout
|
||||
subprocess.Stderr = os.Stderr
|
||||
subprocess.Stdin = os.Stdin
|
||||
|
||||
fmt.Fprintf(os.Stdout, "\n%s\n\n", style.FgBlue.Sprint("+ "+strings.Join(subprocess.Args, " ")))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue