added info log about changing hardlink

This commit is contained in:
Jakub Trllo 2022-03-30 16:38:45 +02:00
parent 8eab6ae180
commit 8940830787

View file

@ -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)