Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGinnivan committed Feb 8, 2022
1 parent 1dc6b87 commit 99d337c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/git/src/index.ts
Expand Up @@ -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,

0 comments on commit 99d337c

Please sign in to comment.