Skip to content

Commit b14dd16

Browse files
committed
Fix dropped output from spawnSync
1 parent 5d71d8e commit b14dd16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/core/lib/bundling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function dockerExec(args: string[], options?: SpawnSyncOptions) {
334334
const proc = spawnSync(prog, args, options ?? {
335335
stdio: [ // show Docker output
336336
'ignore', // ignore stdio
337-
process.stderr, // redirect stdout to stderr
337+
'pipe', // capture stdout
338338
'inherit', // inherit stderr
339339
],
340340
});

0 commit comments

Comments
 (0)