Skip to content

Commit

Permalink
πŸ“ Fixed name conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
retrouser955 committed Apr 10, 2024
1 parent b0bdfc5 commit f32a05c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/utils/Runner/NodeFileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export class NodeFileSystemManager {
return;
}

const first = dir.shift() as string;
const dir1 = dir.shift() as string;

filesObj[first] = {};
filesObj[dir1] = {};

getFiles(dir, filesObj[first]);
getFiles(dir, filesObj[dir1]);
};

getFiles(arr, this.files[first]);
Expand Down

0 comments on commit f32a05c

Please sign in to comment.