diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-22 03:43:39 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-22 03:43:39 +0800 |
commit | e3cc2834789ec5d4affceee2d03015085b24d907 (patch) | |
tree | 86999928c86d98042c696ff8abc59dae335d32d5 | |
parent | 9a2735d03522a5099319409d75a49b75282d64ea (diff) | |
download | dexon-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
-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 !== '') { |