From 0883a15d34005d068498d65bc9e3464a5454ba46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=80=C3=AB=C3=A5=C3=AA=C3=B1=C3=A5=C3=A9=20=C3=81=C3=A0?= =?UTF-8?q?=C3=A4=C3=BF=C3=A5=C3=A2?= Date: Sun, 2 Jul 2023 14:27:01 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=B4=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=B2=D0=B2=D0=BE=D0=B4=20=D0=B2=20stderr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/drawio/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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