Skip to content

Commit

Permalink
pkg/utils: Connect stderr when running Toolbx through flatpak-spawn
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryMichal committed May 13, 2022
1 parent e80cba4 commit ebfc2d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func ForwardToHost() (int, error) {
logrus.Debugf("%s", arg)
}

exitCode, err := shell.RunWithExitCode("flatpak-spawn", os.Stdin, os.Stdout, nil, flatpakSpawnArgs...)
exitCode, err := shell.RunWithExitCode("flatpak-spawn", os.Stdin, os.Stdout, os.Stderr, flatpakSpawnArgs...)
if err != nil {
return exitCode, err
}
Expand Down

0 comments on commit ebfc2d2

Please sign in to comment.