Skip to content

Commit

Permalink
Update packages/insomnia/src/sync/store/drivers/file-system-driver.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkav authored and gatzjames committed Feb 26, 2024
1 parent cd2b56b commit c73ac2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class FileSystemDriver implements BaseDriver {
async _getKeyPath(key: string) {
const p = path.join(this._directory, key);
// Create base directory
const newDirectory = await fs.mkdir(path.dirname(p), { recursive: true });
await fs.mkdir(path.dirname(p), { recursive: true });
return p;
}
}

0 comments on commit c73ac2b

Please sign in to comment.