빌드시 로그 남김
This commit is contained in:
parent
eb506c53bb
commit
e2ae05904e
1 changed files with 3 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue