bug fixed

This commit is contained in:
leedongmyung[desktop] 2023-11-25 12:49:16 +09:00
parent 241ed919a9
commit 90649528eb

View file

@ -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());
}
}