diff --git a/pkg/drawio/export.go b/pkg/drawio/export.go index e25c8c0..767a375 100644 --- a/pkg/drawio/export.go +++ b/pkg/drawio/export.go @@ -162,7 +162,7 @@ func (exp Exporter) ExportFile( } cmd := exec.Command(exp.opts.App(), drawioArgs...) cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr + cmd.Stderr = nil commands = append(commands, cmd) } return commands, err