Skip to content

Commit

Permalink
Fix processing exclusions during export
Browse files Browse the repository at this point in the history
  • Loading branch information
shana committed Feb 12, 2024
1 parent 3a8524d commit 2f10f7b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -389,10 +389,10 @@ private static void RecursePublishContents(string path, Func<string, bool> filte
if (filterDir(dir))
{
addEntry(dir, false);
}
else if (recurseDir(dir))
{
RecursePublishContents(dir, filterDir, filterFile, recurseDir, addEntry);
if (recurseDir(dir))
{
RecursePublishContents(dir, filterDir, filterFile, recurseDir, addEntry);
}
}
}
}
Expand Down

0 comments on commit 2f10f7b

Please sign in to comment.