Skip to content

Commit

Permalink
Regression fix for tag not being taken when specified in CLI (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
dopecodez authored Jul 11, 2020
1 parent f0fe085 commit f29295d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ module.exports = async (options, pkg) => {

return {
...options,
version: answers.version || answers.customVersion,
tag: answers.tag || answers.customTag,
version: answers.version || answers.customVersion || options.version,
tag: answers.tag || answers.customTag || options.tag,
confirm: true,
repoUrl,
releaseNotes
Expand Down

0 comments on commit f29295d

Please sign in to comment.