Skip to content

utils: fix broken symlink copy exception #3785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update mkdocs/utils/__init__.py
  • Loading branch information
tomchristie authored Aug 23, 2024
commit 6d5eb59697ff63fd76e3a9bcd464575796b88b42
2 changes: 1 addition & 1 deletion mkdocs/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def copy_file(source_path: str, output_path: str) -> None:
output_path = os.path.join(output_path, os.path.basename(source_path))
if os.path.islink(source_path):
if not os.path.exists(os.readlink(source_path)):
log.warning("Symlink broken, not copy file: %s" % source_path)
log.warning("Symlink broken, could not copy file: %s" % source_path)
return
shutil.copyfile(source_path, output_path)

Expand Down
Loading