Skip to content

Commit

Permalink
fix(git): coerce git version equals (#13767)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 24, 2022
1 parent e0aaab8 commit a920a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/git/index.ts
Expand Up @@ -170,7 +170,7 @@ export async function validateGitVersion(): Promise<boolean> {
if (
!(
version &&
(version === GIT_MINIMUM_VERSION ||
(semverCoerced.equals(version, GIT_MINIMUM_VERSION) ||
semverCoerced.isGreaterThan(version, GIT_MINIMUM_VERSION))
)
) {
Expand Down

0 comments on commit a920a6b

Please sign in to comment.