Skip to content

Commit

Permalink
fix getLatestVersionTag()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Jenkinson committed Jun 17, 2018
1 parent 9b7460e commit e918f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/set-package-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ function getCommitNum() {
}

function getLatestVersionTag() {
return parseInt(require('child_process').execSync('git describe origin/master --match="v*"').toString(), 10);
return require('child_process').execSync('git describe origin/master --match="v*"').toString();
}

0 comments on commit e918f3a

Please sign in to comment.