We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b4ce3 commit 5dfb8f9Copy full SHA for 5dfb8f9
src/env/node/gk/cli/integration.ts
@@ -49,10 +49,11 @@ export class GkCliIntegrationProvider implements Disposable {
49
50
this.onConfigurationChanged();
51
52
- const cliInstall = this.container.storage.get('gk:cli:install');
+ // TODO: Uncomment this once we feel confident enough that the install process is stable cross-platform
53
+ /* const cliInstall = this.container.storage.get('gk:cli:install');
54
if (!cliInstall || (cliInstall.status === 'attempted' && cliInstall.attempts < 5)) {
55
setTimeout(() => this.installCLI(true), 10000 + Math.floor(Math.random() * 20000));
- }
56
+ } */
57
}
58
59
dispose(): void {
0 commit comments