Skip to content

Commit

Permalink
chore: remove redundant code
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 committed May 24, 2023
1 parent fbe285b commit 2bb914b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ async function install (fs, gyp, argv) {
const entries = await fs.promises.readdir(src, { withFileTypes: true })
for (const entry of entries) {
if (entry.isDirectory()) {
await fs.promises.mkdir(path.join(dest, entry.name), { recursive: true })
await copyDirectory(path.join(src, entry.name), path.join(dest, entry.name))
} else if (entry.isFile()) {
// with parallel installs, copying files may cause file errors on
Expand Down

0 comments on commit 2bb914b

Please sign in to comment.