수정중

This commit is contained in:
leedongmyung[desktop] 2023-11-25 12:40:08 +09:00
parent 73b69cc021
commit a80cb7399c

View file

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