aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/postpublish_utils.js
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-22 04:03:26 +0800
committerFabio Berger <me@fabioberger.com>2017-11-22 04:03:26 +0800
commitf7f1397e52d246426e4d7bbff89a0b770faed3ee (patch)
treefdf4e42d3b744a5ee97cab33017401215e8da55a /scripts/postpublish_utils.js
parent3660ba28d73d70d08bf14c33ef680e5ef3ec7f3b (diff)
parente3cc2834789ec5d4affceee2d03015085b24d907 (diff)
downloaddexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.tar
dexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.tar.gz
dexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.tar.bz2
dexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.tar.lz
dexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.tar.xz
dexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.tar.zst
dexon-sol-tools-f7f1397e52d246426e4d7bbff89a0b770faed3ee.zip
Merge branch 'development' into addWebsite
* development: Fix a typo in postpublish utils tags -> tag Publish Revert "Publish" Publish Add instanceOf assertion Rename toDecimal to hexToDecimal Add PR numbers Add postFormatter for logs
Diffstat (limited to 'scripts/postpublish_utils.js')
-rw-r--r--scripts/postpublish_utils.js2
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 !== '') {