Skip to content

Commit 5a96f80

Browse files
committed
Support GPG password prompts during version bumping
Fixes #79
1 parent efcc05e commit 5a96f80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ const np = async (input = 'patch', {packageManager, ...options}, {package_, root
179179
arguments_.push('--message', options.message);
180180
}
181181

182-
return exec(cli, arguments_);
182+
// Inherit stdin to allow GPG password prompts for commit signing
183+
return exec(cli, arguments_, {stdin: 'inherit'});
183184
},
184185
},
185186
...options.runPublish

0 commit comments

Comments
 (0)