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

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;