Skip to content

Commit 4645fbf

Browse files
committed
APP-4665 add group-logs param
1 parent 3eb0a6d commit 4645fbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26300,7 +26300,7 @@ function parseBuildId(stdout) {
2630026300
checkSpawnSync(spawnRet);
2630126301
const buildId = parseBuildId(spawnRet.stdout);
2630226302
console.log('waiting for build');
26303-
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait']));
26303+
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait', '--group-logs']));
2630426304
})();
2630526305

2630626306
})();

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ function parseBuildId(stdout) {
126126
checkSpawnSync(spawnRet);
127127
const buildId = parseBuildId(spawnRet.stdout);
128128
console.log('waiting for build');
129-
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait']));
129+
await checkSpawn(spawn(cliPath, ['module', 'build', 'logs', '--id', buildId, '--wait', '--group-logs']));
130130
})();

0 commit comments

Comments
 (0)