Skip to content

Commit

Permalink
APP-4665 add group-logs param
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Apr 17, 2024
1 parent 3eb0a6d commit 4645fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26300,7 +26300,7 @@ function parseBuildId(stdout) {
checkSpawnSync(spawnRet);
const buildId = parseBuildId(spawnRet.stdout);
console.log('waiting for build');
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait']));
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait', '--group-logs']));
})();

})();
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,5 @@ function parseBuildId(stdout) {
checkSpawnSync(spawnRet);
const buildId = parseBuildId(spawnRet.stdout);
console.log('waiting for build');
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait']));
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait', '--group-logs']));
})();

0 comments on commit 4645fbf

Please sign in to comment.