Skip to content

Commit f491294

Browse files
authored
fix: ESBuild installation (#170)
#169
1 parent 7efaba7 commit f491294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/esbuild.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export async function initESBuild(
195195

196196
logChannel.debug(`Moving files to ${targetPath}`);
197197
try {
198-
//await fs.promises.mkdir(path.dirname(targetPath));
198+
await fs.promises.mkdir(path.dirname(targetPath));
199199
await fs.promises.rename(path.join(temp, 'package'), targetPath);
200200
} catch (e) {
201201
logChannel.debug(`Error moving files to ${targetPath}`, e);

0 commit comments

Comments
 (0)