빌드시 로그 남김

This commit is contained in:
Toki 2025-02-02 18:53:34 +09:00
parent eb506c53bb
commit e2ae05904e

View file

@ -26,8 +26,9 @@ class BuildDart extends Command {
shell.write(
' $and flutter pub run build_runner build --delete-conflicting-outputs');
}
var process = await ProcessExecutor.start(await appendShell(shell, command),
var script = await appendShell(shell, command);
print(script);
var process = await ProcessExecutor.start(script,
printStderr: false, logHandler: Application.logWithType);
return await completeProcess(process, command);