Skip to content

Commit

Permalink
print console output?
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel3108 committed Nov 11, 2024
1 parent 88f9473 commit 9d5b6b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/lib/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async function runAddon(
const { args, command } = resolveCommand(workspace.packageManager, 'execute', script.args)!;
if (workspace.packageManager === 'npm') args.unshift('--yes');
await exec(command, args, {
nodeOptions: { cwd: workspace.cwd, stdio: 'pipe' },
nodeOptions: { cwd: workspace.cwd, stdio: 'inherit' },
throwOnError: true
});
} catch (error) {
Expand Down

0 comments on commit 9d5b6b2

Please sign in to comment.