From 99d337c91ad60f1291152d36f6a90dd293a0b3cf Mon Sep 17 00:00:00 2001 From: Jake Ginnivan Date: Sun, 7 Nov 2021 11:01:20 +0800 Subject: [PATCH] Fixed formatting --- packages/git/src/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/git/src/index.ts b/packages/git/src/index.ts index 92f63e4d5..06641b399 100644 --- a/packages/git/src/index.ts +++ b/packages/git/src/index.ts @@ -269,10 +269,10 @@ export async function getChangedPackagesSinceRef({ ); } async function tagExists(tagStr: string) { - const gitCmd = await spawn("git", ["tag", "-l", tagStr]); - const output = gitCmd.stdout.toString().trim(); - const tagExists = !!output; - return tagExists; - } + const gitCmd = await spawn("git", ["tag", "-l", tagStr]); + const output = gitCmd.stdout.toString().trim(); + const tagExists = !!output; + return tagExists; +} tagExists,