Skip to content

Commit

Permalink
Fix directory scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Oct 5, 2023
1 parent 61cc15c commit 09f7aa6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/containers/transform/DirectoryScanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ export class DirectoryScanner {
continue;
}

if (!await existingDirectory.exists(realFileName)) {
continue;
}

if (await existingDirectory.isDirectory(realFileName)) {
if (realFileName.endsWith('.assets')) {
continue;
Expand Down

0 comments on commit 09f7aa6

Please sign in to comment.