Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGinnivan committed Nov 7, 2021
1 parent 4430799 commit 9aa8191
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/git/src/index.ts
Expand Up @@ -253,11 +253,11 @@ 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;
}

export {
getCommitThatAddsFile,
Expand Down

0 comments on commit 9aa8191

Please sign in to comment.