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 9e55956 commit f1896ddCopy full SHA for f1896dd
src/main/osinstaller/CxInstaller.ts
@@ -41,10 +41,10 @@ export class CxInstaller {
41
throw new Error('Unsupported platform or architecture');
42
}
43
44
- const arch = this.getArchitecture();
45
- logger.info(`Platform: ${this.platform}, Arch: ${arch}`);
+ const architecture = this.getArchitecture();
+ logger.info(`Platform: ${this.platform}, Arch: ${architecture}`);
46
47
- return `https://download.checkmarx.com/CxOne/CLI/${cliVersion}/ast-cli_${cliVersion}_${platformData.platform}_${arch}.${platformData.extension}`;
+ return `https://download.checkmarx.com/CxOne/CLI/${cliVersion}/ast-cli_${cliVersion}_${platformData.platform}_${architecture}.${platformData.extension}`;
48
49
50
private getArchitecture(): string {
0 commit comments