Skip to content

Commit

Permalink
Merge pull request #16 from demetris-manikas/FIX-authors-from-author
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
kevinsawicki committed Mar 2, 2016
2 parents ed90723 + d32bd18 commit 99610fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export async function createWindowsInstaller(options) {
if (typeof(metadata.author) === 'string') {
metadata.authors = metadata.author;
} else {
metadata.authors = (metadata.authors || {}).name || '';
metadata.authors = (metadata.author || {}).name || '';
}
}

Expand Down

0 comments on commit 99610fb

Please sign in to comment.