1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-04 22:34:39 +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:
Emanuele "Lele" Calo 2024-04-07 02:07:30 +02:00 committed by Stefan Haller
parent fab7ca2b58
commit a63c660f28

View File

@ -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, " ")))