Skip to content

Commit b4ed4f9

Browse files
MiniGodbcoe
authored andcommitted
fix: show full tag name in checkpoint (#241)
1 parent fbfdf5e commit b4ed4f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/lifecycles/tag.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function execTag (newVersion, pkgPrivate, args) {
2323
} else {
2424
tagOption = '-a '
2525
}
26-
checkpoint(args, 'tagging release %s', [newVersion])
26+
checkpoint(args, 'tagging release %s%s', [args.tagPrefix, newVersion])
2727
return runExec(args, 'git tag ' + tagOption + args.tagPrefix + newVersion + ' -m "' + formatCommitMessage(args.message, newVersion) + '"')
2828
.then(() => {
2929
var message = 'git push --follow-tags origin master'

0 commit comments

Comments
 (0)