Skip to content

Commit 05101eb

Browse files
axosoft-raminteamodio
authored andcommitted
Removes unnecessary version check
1 parent 42efa1b commit 05101eb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/env/node/gk/cli/integration.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,7 @@ export class GkCliIntegrationProvider implements Disposable {
121121
}
122122

123123
// Reset the attempts count if GitLens extension version has changed
124-
if (
125-
reachedMaxAttempts(cliInstall) &&
126-
this.container.version !== this.container.previousVersion &&
127-
satisfies(fromString(this.container.version), '>= 17.6')
128-
) {
124+
if (reachedMaxAttempts(cliInstall) && this.container.version !== this.container.previousVersion) {
129125
void this.container.storage.store('gk:cli:install', undefined);
130126
}
131127

0 commit comments

Comments
 (0)