We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce3043 commit dd55e12Copy full SHA for dd55e12
skillsnetwork/core.py
@@ -131,7 +131,8 @@ def _is_file_to_symlink(path: Path) -> bool:
131
:param path: path to check.
132
:returns: True if file should be symlinked, False otherwise.
133
"""
134
- return not path.name.startswith("._") # Don't symlink "._" junk
+ # Don't symlink "._" junk
135
+ return not (path.name.startswith("._") or path.name in ["__MACOSX"])
136
137
138
async def download(
0 commit comments