Skip to content

Commit

Permalink
use child_process.stdio instead of the deprecated customFds to spawn man
Browse files Browse the repository at this point in the history
  • Loading branch information
Feder1co5oave committed Jan 2, 2018
1 parent 53d99bb commit eae056c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/marked
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function help() {
cwd: process.cwd(),
env: process.env,
setsid: false,
customFds: [0, 1, 2]
stdio: 'inherit'
};

spawn('man',
Expand Down

0 comments on commit eae056c

Please sign in to comment.