diff options
| author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-08-09 05:01:57 +0800 | 
|---|---|---|
| committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-08-09 05:01:57 +0800 | 
| commit | 5ccf41c56693aa45988001260b68fdad2124b12c (patch) | |
| tree | f0581d64ed0fd2fa19ae4148bdd071317157d395 /packages | |
| parent | 797fd38e00e48abddc03be214984f81bf7b1c29c (diff) | |
| download | dexon-sol-tools-5ccf41c56693aa45988001260b68fdad2124b12c.tar.gz dexon-sol-tools-5ccf41c56693aa45988001260b68fdad2124b12c.tar.zst dexon-sol-tools-5ccf41c56693aa45988001260b68fdad2124b12c.zip | |
fix(monorepo-scripts): Fix typo in git tag command
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/monorepo-scripts/src/utils/utils.ts | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/packages/monorepo-scripts/src/utils/utils.ts b/packages/monorepo-scripts/src/utils/utils.ts index d9bae3ea9..26ac801bd 100644 --- a/packages/monorepo-scripts/src/utils/utils.ts +++ b/packages/monorepo-scripts/src/utils/utils.ts @@ -117,7 +117,7 @@ export const utils = {          return tags;      },      async getLocalGitTagsAsync(): Promise<string[]> { -        const result = await execAsync(`git tags`, { +        const result = await execAsync(`git tag`, {              cwd: constants.monorepoRootPath,          });          const tagsString = result.stdout; | 
