mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
added info log about changing hardlink
This commit is contained in:
parent
8eab6ae180
commit
8940830787
1 changed files with 3 additions and 0 deletions
|
|
@ -337,6 +337,9 @@ class ExtractLook(openpype.api.Extractor):
|
|||
hashes = {}
|
||||
# Temporary fix to NOT create hardlinks on windows machines
|
||||
if platform.system().lower() == "windows":
|
||||
self.log.info(
|
||||
"Forcing copy instead of hardlink due to issues on Windows..."
|
||||
)
|
||||
force_copy = True
|
||||
else:
|
||||
force_copy = instance.data.get("forceCopy", False)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue