diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-11-23 01:24:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-23 01:24:59 +0800 |
commit | beed223281115152e2d4282fa2c2e76515a98f45 (patch) | |
tree | 589be7ea7f90efdb541c55de14c9a97c1c4804bb /scripts/postpublish_utils.js | |
parent | 351b7557b65e4cdef2177585d52021ee5a0f3e42 (diff) | |
parent | 66750f7349435dbcdb783a214e21800466ec3ac1 (diff) | |
download | dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.tar dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.tar.gz dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.tar.bz2 dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.tar.lz dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.tar.xz dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.tar.zst dexon-sol-tools-beed223281115152e2d4282fa2c2e76515a98f45.zip |
Merge branch 'development' into feature/orderExpired
Diffstat (limited to 'scripts/postpublish_utils.js')
-rw-r--r-- | scripts/postpublish_utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/postpublish_utils.js b/scripts/postpublish_utils.js index 3fb079bad..4f9798e60 100644 --- a/scripts/postpublish_utils.js +++ b/scripts/postpublish_utils.js @@ -9,7 +9,7 @@ const githubPersonalAccessToken = process.env.GITHUB_PERSONAL_ACCESS_TOKEN_0X_JS module.exports = { getLatestTagAndVersionAsync: function(subPackageName) { const subPackagePrefix = subPackageName + '@'; - const gitTagsCommand = 'git tags -l "' + subPackagePrefix + '*"'; + const gitTagsCommand = 'git tag -l "' + subPackagePrefix + '*"'; return execAsync(gitTagsCommand) .then(function(result) { if (result.stderr !== '') { |