Skip to content

Commit 2bb914b

Browse files
committed
chore: remove redundant code
1 parent fbe285b commit 2bb914b

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

lib/install.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ async function install (fs, gyp, argv) {
110110
const entries = await fs.promises.readdir(src, { withFileTypes: true })
111111
for (const entry of entries) {
112112
if (entry.isDirectory()) {
113-
await fs.promises.mkdir(path.join(dest, entry.name), { recursive: true })
114113
await copyDirectory(path.join(src, entry.name), path.join(dest, entry.name))
115114
} else if (entry.isFile()) {
116115
// with parallel installs, copying files may cause file errors on

0 commit comments

Comments
 (0)