We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbfdf5e commit b4ed4f9Copy full SHA for b4ed4f9
lib/lifecycles/tag.js
@@ -23,7 +23,7 @@ function execTag (newVersion, pkgPrivate, args) {
23
} else {
24
tagOption = '-a '
25
}
26
- checkpoint(args, 'tagging release %s', [newVersion])
+ checkpoint(args, 'tagging release %s%s', [args.tagPrefix, newVersion])
27
return runExec(args, 'git tag ' + tagOption + args.tagPrefix + newVersion + ' -m "' + formatCommitMessage(args.message, newVersion) + '"')
28
.then(() => {
29
var message = 'git push --follow-tags origin master'
0 commit comments