aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-11-22 03:43:39 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-11-22 03:43:39 +0800
commite3cc2834789ec5d4affceee2d03015085b24d907 (patch)
tree86999928c86d98042c696ff8abc59dae335d32d5 /scripts
parent9a2735d03522a5099319409d75a49b75282d64ea (diff)
downloaddexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.tar
dexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.tar.gz
dexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.tar.bz2
dexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.tar.lz
dexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.tar.xz
dexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.tar.zst
dexon-sol-tools-e3cc2834789ec5d4affceee2d03015085b24d907.zip
Fix a typo in postpublish utils tags -> tag
Diffstat (limited to 'scripts')
-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 !== '') {