Skip to content

Commit c8d8bad

Browse files
author
Kelly Selden
committed
forgot to pipe stdout
1 parent 10adf6a commit c8d8bad

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/get-start-and-end-commands.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,14 @@ function getArgs({
133133
module.exports.spawn = function spawn(command, args, options) {
134134
debug(`${command} ${args.join(' ')}`);
135135

136-
return execa(command, args, {
136+
let ps = execa(command, args, {
137137
stdio: ['pipe', 'pipe', 'inherit'],
138138
...options
139139
});
140+
141+
ps.stdout.pipe(process.stdout);
142+
143+
return ps;
140144
};
141145

142146
module.exports.npx = function npx(args, options) {

0 commit comments

Comments
 (0)