fix(monorepo-scripts): Fix typo in git tag command

This commit is contained in:
Alex Browne 2018-08-08 14:01:57 -07:00
parent 797fd38e00
commit 5ccf41c566
No known key found for this signature in database
GPG Key ID: 7974B08A447ABE31

View File

@ -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;