Skip to content

Commit f12eb2f

Browse files
fix: relay all container output to STDERR
1 parent de4e49d commit f12eb2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Studio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function execDocker(args, options = { }) {
2626
}
2727

2828
if (options.$relayStdout) {
29-
dockerProcess.stdout.pipe(process.stdout);
29+
dockerProcess.stdout.pipe(process.stderr);
3030
}
3131

3232
let stdout = '';

0 commit comments

Comments
 (0)