Skip to content

Commit

Permalink
cmd: drop stderr/out setting in Wine
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Oct 24, 2023
1 parent edc6798 commit 8f3c715
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cmd/vinegar/vinegar.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,7 @@ func main() {
usage()
}

cmd := pfx.Wine(args[1], args[2:]...)
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
if err := cmd.Run(); err != nil {
if err := pfx.Wine(args[1], args[2:]...).Run(); err != nil {
log.Fatal(err)
}
case "kill":
Expand Down

0 comments on commit 8f3c715

Please sign in to comment.