From e2ae05904eabe0eaae922423afd1af190db6c568 Mon Sep 17 00:00:00 2001 From: Toki Date: Sun, 2 Feb 2025 18:53:34 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=8C=EB=93=9C=EC=8B=9C=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8=20=EB=82=A8=EA=B9=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/oto/commands/build/build_dart.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/oto/commands/build/build_dart.dart b/lib/oto/commands/build/build_dart.dart index 01eb623..0d69d6c 100644 --- a/lib/oto/commands/build/build_dart.dart +++ b/lib/oto/commands/build/build_dart.dart @@ -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);