diff --git a/src/cli/services/path.service.ts b/src/cli/services/path.service.ts index 9791833a6b..b7b576b40a 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 {