chore(docs): fix links to github

This commit is contained in:
Peter Bacon Darwin
2014-09-26 20:51:55 +01:00
parent 44c451e9f5
commit 038ca9b9bf
2 changed files with 3 additions and 1 deletions

View File

@@ -83,6 +83,7 @@ var getTaggedVersion = function() {
if ( version && semver.satisfies(version, currentPackage.branchVersion)) {
version.codeName = getCodeName(tag);
version.full = version.version;
version.branch = 'v' + currentPackage.branchVersion.replace('*', 'x');
return version;
}
}
@@ -197,6 +198,7 @@ var getSnapshotVersion = function() {
version.isSnapshot = true;
version.format();
version.full = version.version + '+' + version.build;
version.branch = 'master';
return version;
};