diff --git a/bin/run.js b/bin/run.js index 079874711..4a41dccc5 100755 --- a/bin/run.js +++ b/bin/run.js @@ -2,7 +2,12 @@ async function main() { const { execute } = await import('@oclif/core'); - await execute({ dir: import.meta.url }); + await execute({ dir: import.meta.url }).then(msg => { + if (msg) { + // eslint-disable-next-line no-console + console.log(msg); + } + }); } await main();