diff --git a/packages/cli/src/helpers/run.ts b/packages/cli/src/helpers/run.ts index 52be518459..b3ce7ad2c1 100644 --- a/packages/cli/src/helpers/run.ts +++ b/packages/cli/src/helpers/run.ts @@ -36,11 +36,12 @@ export async function run( env, }); - await waitForExit(child); + await waitForExit(child, name); } export async function waitForExit( child: ChildProcess & { exitCode?: number }, + name?: string, ): Promise { if (typeof child.exitCode === 'number') { if (child.exitCode) {