diff --git a/melamine/fileops.py b/melamine/fileops.py index 6ad2025..83afcca 100644 --- a/melamine/fileops.py +++ b/melamine/fileops.py @@ -39,7 +39,7 @@ async def mount_bound_rglob(path: AsyncPath, mount: AsyncPath, pattern: str, ign logger.info(f"Skipping differently mounted subdir: {path} (wanted {mount}))") return async for subpath in path.glob(pattern): - async for subitem in mount_bound_rglob(subpath, mount, pattern): + async for subitem in mount_bound_rglob(subpath, mount, pattern, ignoredirs): yield subitem yield path