Skip to content

Commit

Permalink
Fix shutil move (#2433)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wauplin committed Jul 31, 2024
1 parent e63f31f commit 77122e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/huggingface_hub/file_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ def _create_symlink(src: str, dst: str, new_blob: bool = False) -> None:
# Symlinks are not supported => let's move or copy the file.
if new_blob:
logger.info(f"Symlink not supported. Moving file from {abs_src} to {abs_dst}")
shutil.move(abs_src, abs_dst)
shutil.move(abs_src, abs_dst, copy_function=_copy_no_matter_what)
else:
logger.info(f"Symlink not supported. Copying file from {abs_src} to {abs_dst}")
shutil.copyfile(abs_src, abs_dst)
Expand Down

0 comments on commit 77122e2

Please sign in to comment.