aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/monorepo-scripts/src/utils/utils.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/monorepo-scripts/src/utils/utils.ts b/packages/monorepo-scripts/src/utils/utils.ts
index 4d3e2d709..f819ab6f1 100644
--- a/packages/monorepo-scripts/src/utils/utils.ts
+++ b/packages/monorepo-scripts/src/utils/utils.ts
@@ -105,8 +105,8 @@ export const utils = {
async removeLocalTagAsync(tagName: string): Promise<void> {
try {
await execAsync(`git tag -d ${tagName}`, {
- cwd: constants.monorepoRootPath,
- });
+ cwd: constants.monorepoRootPath,
+ });
} catch (err) {
throw new Error(`Failed to delete local git tag. Got err: ${err}`);
}
@@ -115,8 +115,8 @@ export const utils = {
async removeRemoteTagAsync(tagName: string): Promise<void> {
try {
await execAsync(`git push origin ${tagName}`, {
- cwd: constants.monorepoRootPath,
- });
+ cwd: constants.monorepoRootPath,
+ });
} catch (err) {
throw new Error(`Failed to delete remote git tag. Got err: ${err}`);
}