Skip to content

Commit

Permalink
Inherit stdio for spawned git process (#82)
Browse files Browse the repository at this point in the history
Enable user input while deploying.
  • Loading branch information
cy20lin authored and NoahDragon committed Sep 19, 2017
1 parent 056db8e commit 456bb1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/deployer.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ module.exports = function(args) {

return spawn('git', args, {
cwd: deployDir,
verbose: verbose
verbose: verbose,
stdio: 'inherit'
});
}

Expand Down

0 comments on commit 456bb1a

Please sign in to comment.