Skip to content

Commit

Permalink
Redirect cmd.Stderr to os.Stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrash committed Jan 22, 2023
1 parent 336ee98 commit 783bc9a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions twshim.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ func Command(downloadRoot, releaseTag, assetName string, arg ...string) (*exec.C

cmd := exec.Command(bin, arg...)
cmd.Stdin = os.Stdin
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout

return cmd, nil
Expand Down

0 comments on commit 783bc9a

Please sign in to comment.