We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fdbc7d commit 17eda51Copy full SHA for 17eda51
src/main/osinstaller/CxInstaller.ts
@@ -50,6 +50,8 @@ export class CxInstaller {
50
async downloadIfNotInstalledCLI(): Promise<void> {
51
const [_, release] = await CxInstaller.installSemaphore.acquire();
52
try {
53
+ await fs.promises.mkdir(this.resourceDirPath, { recursive: true });
54
+
55
if (this.checkExecutableExists()) {
56
logger.info('Executable already installed.');
57
return;
src/main/wrapper/resources/README.md
0 commit comments