From 90649528eba5b862de69f3aaf9c5916e1f9f096d Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 25 Nov 2023 12:49:16 +0900 Subject: [PATCH] bug fixed --- lib/oto/commands/git/git.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index b98440f..b562e07 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -18,7 +18,7 @@ class Git extends Command { var process = await ProcessExecutor.start(shell); - return complete(process.exitCode, command, + return complete(await process.process.exitCode, command, errorMessage: process.stderr.toString()); } }