Skip to content

Commit

Permalink
ci: use a single v in tag name (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus authored and callmehiphop committed Nov 29, 2016
1 parent 85b42b4 commit 779f250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/docs/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Builder.prototype.getTagName = function() {
}

if (this.isUmbrella) {
return 'v' + this.version;
return this.version.replace(/^v*/, 'v');
}

return [this.name, this.version].join('-');
Expand Down

0 comments on commit 779f250

Please sign in to comment.