From a80cb7399c224f58342480198143880152e2404b Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 25 Nov 2023 12:40:08 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/oto/commands/git/git.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index 85596b3..79a1a21 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -16,10 +16,9 @@ class Git extends Command { shell.write('&& git ${getPathNormal(item)}'); } - var process = await ProcessExecutor.start(shell, - workspace: workspace, printStderr: false); + var process = await ProcessExecutor.run(shell, workspace: workspace); - return complete(await process.process.exitCode, command, + return complete(process.exitCode, command, errorMessage: process.stderr.toString()); } }