Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGinnivan committed Apr 27, 2022
1 parent 5379aee commit 933cf39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/git/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,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 933cf39

Please sign in to comment.