diff options
Diffstat (limited to 'browserenv.go')
-rw-r--r-- | browserenv.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/browserenv.go b/browserenv.go index e83c3d1..f5a51ca 100644 --- a/browserenv.go +++ b/browserenv.go @@ -81,7 +81,11 @@ func browserCommand(command, url string) *exec.Cmd { args = append(args, command) - return exec.Command(shell, args...) + cmd := exec.Command(shell, args...) + cmd.Stdout = Stdout + cmd.Stderr = Stderr + + return cmd } func fmtBrowserCommand(command, url string) string { |