Skip to content

Commit

Permalink
fix: ensure general cache paths
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Nov 12, 2024
1 parent dfaf7ae commit a7f78c7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cli/services/path.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string> {
Expand Down

0 comments on commit a7f78c7

Please sign in to comment.