Skip to content

Commit 0d75845

Browse files
committed
fix: get author bugfix
1 parent 1a1d280 commit 0d75845

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/git.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const execa = require('execa')
55

66
module.exports.author = async function author () {
77
try {
8-
const [{ stdio: name }, { stdio: email }] = await Promise.all([
8+
const [{ stdout: name }, { stdout: email }] = await Promise.all([
99
execa('git', ['config', '--get', 'user.name']),
1010
execa('git', ['config', '--get', 'user.email'])
1111
])

0 commit comments

Comments
 (0)