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 f6b9ac0 commit 71723ebCopy full SHA for 71723eb
src/main/osinstaller/CxInstaller.ts
@@ -1,4 +1,3 @@
1
-import * as fsPromises from 'fs/promises';
2
import * as fs from 'fs';
3
import * as path from 'path';
4
import * as tar from 'tar';
@@ -12,7 +11,7 @@ type SupportedPlatforms = 'win32' | 'darwin' | 'linux';
12
11
13
export class CxInstaller {
14
private readonly platform: string;
15
- private cliVersion = '2.2.6';
+ private cliVersion = '2.2.5';
16
private readonly resourceDirPath: string;
17
private static installSemaphore = new Semaphore(1); // Semaphore with 1 slot
18
0 commit comments