From a7f78c74ab4130d9cb4f95af1ec61d1418d6fa96 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Tue, 12 Nov 2024 09:20:36 +0100 Subject: [PATCH] fix: ensure general cache paths --- src/cli/services/path.service.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cli/services/path.service.ts b/src/cli/services/path.service.ts index 9791833a6..b7b576b40 100644 --- a/src/cli/services/path.service.ts +++ b/src/cli/services/path.service.ts @@ -135,6 +135,9 @@ export class PathService { await this.createDir(this.binDir); await this.createDir(this.sslPath); await this.createDir(this._toolInitPath); + await this.createDir(join(this.tmpDir, 'cache', '.cache')); + await this.createDir(join(this.tmpDir, 'cache', '.config')); + await this.createDir(join(this.tmpDir, 'cache', '.local')); } async ensureToolPath(tool: string): Promise {