Skip to content

Commit

Permalink
fix: show full tag name in checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniGod committed Apr 20, 2018
1 parent 9a99607 commit 07e5944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lifecycles/tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function execTag (newVersion, pkgPrivate, args) {
} else {
tagOption = '-a '
}
checkpoint(args, 'tagging release %s', [newVersion])
checkpoint(args, 'tagging release %s%s', [args.tagPrefix, newVersion])
return runExec(args, 'git tag ' + tagOption + args.tagPrefix + newVersion + ' -m "' + formatCommitMessage(args.message, newVersion) + '"')
.then(() => {
var message = 'git push --follow-tags origin master'
Expand Down

0 comments on commit 07e5944

Please sign in to comment.