diff --git a/config/command.go b/config/command.go index 8de4abd..d00fc07 100644 --- a/config/command.go +++ b/config/command.go @@ -29,7 +29,7 @@ func (c Command) Execute(payload string, header http.Header) ([]byte, error) { arguments = append(arguments, header_builder.String()) } - return exec.Command(c.Program, arguments...).Output() + return exec.Command(c.Program, arguments...).CombinedOutput() } func (c Command) String() string {