Skip to content

Commit

Permalink
Fix a regression from 6.3.0 (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
dopecodez committed Jul 7, 2020
1 parent fac6558 commit 59edfe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/release-task-helper.js
Expand Up @@ -9,7 +9,7 @@ module.exports = async (options, pkg) => {
let tag = await getTagVersionPrefix(options) + newVersion;
const isPreRelease = version(options.version).isPrerelease();
if (isPreRelease) {
tag += await getPreReleasePrefix();
tag += await getPreReleasePrefix(options);
}

const url = newGithubReleaseUrl({
Expand Down

0 comments on commit 59edfe6

Please sign in to comment.