Skip to content

Commit

Permalink
fix: e start --inherit not working (electron#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere authored and MarshallOfSound committed Jan 23, 2020
1 parent 42404dc commit d1e94ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/e
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ program
try {
const exec = evmConfig.execOf(evmConfig.current());
const args = program.rawArgs.slice(3);
const opts = { stdio: ['ignore', 'inherit', 'inherit'] };
const opts = { stdio: 'inherit' };
console.log(color.childExec(exec, args, opts));
childProcess.execFileSync(exec, args, opts);
} catch (e) {
Expand Down

0 comments on commit d1e94ec

Please sign in to comment.