aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/main.go b/app/main.go
index 7e73cbd..7cc6b84 100644
--- a/app/main.go
+++ b/app/main.go
@@ -11,11 +11,12 @@ func main() {
args := os.Args[4:len(os.Args)]
cmd := exec.Command(command, args...)
+ cmd.Stderr = os.Stderr
output, err := cmd.Output()
if err != nil {
fmt.Printf("Err: %v", err)
os.Exit(1)
}
- fmt.Println(string(output))
+ fmt.Print(string(output))
}