Skip to content

Commit a97e8fe

Browse files
committed
Removed string template for path concatenation.
1 parent 67ae226 commit a97e8fe

File tree

1 file changed

+1
-1
lines changed
  • packages/doxdox-parser-jsdoc/src

1 file changed

+1
-1
lines changed

packages/doxdox-parser-jsdoc/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export const parseString = async (
107107

108108
const tempDir = await temp.mkdir({ prefix: 'doxdox-', dir: cacheDir });
109109

110-
const tempPath = `${tempDir}/${path}`;
110+
const tempPath = join(tempDir, path);
111111

112112
await fs.mkdir(dirname(tempPath), { recursive: true });
113113

0 commit comments

Comments
 (0)