Skip to content

Commit

Permalink
Merge pull request #1384 from maurosoria/shelld3v-patch-7
Browse files Browse the repository at this point in the history
Bug fix
  • Loading branch information
maurosoria committed Aug 18, 2024
2 parents 92561a2 + 28862a2 commit 636e1a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,8 @@ def add_directory(self, path):

# Pass if path is in exclusive directories
if any(
"/" + dir in path for dir in options["exclude_subdirs"]
path.startswith(dir) or "/" + dir in path
for dir in options["exclude_subdirs"]
):
return

Expand Down

0 comments on commit 636e1a8

Please sign in to comment.