Skip to content

Commit

Permalink
fixes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed May 21, 2024
1 parent 3cdb97e commit aee8a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/js/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function install() {
for (const arch of ["win32-ia32", "win32-x64"]) {
for (const stat of await fs.readdir(path.join(extensionDir, "runtime", arch), { withFileTypes: true })) {
if (stat.isDirectory()) {
await copyDirectory(path.join(extensionDir, "vcredist", arch), stat.name)
await copyDirectory(path.join(extensionDir, "vcredist", arch), path.join(stat.path, stat.name))
}
}
}
Expand Down

0 comments on commit aee8a61

Please sign in to comment.