Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Maya: Looks - disable hardlinks #995

Merged
merged 2 commits into from
Feb 8, 2021
Merged
Changes from all commits
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
8 changes: 8 additions & 0 deletions pype/plugins/maya/publish/extract_look.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,14 @@ def process(self, instance):
if forceCopy:
mode = COPY

# fixme: This is temporary hack to disable hardlink.
# There is issue in some cases where hardlinks
# don't work with maketx tool, blocking files and
# breaking integration. This must be investigated
# further and until then, we disable creation of
# hardlinks here.
mode = COPY

if mode == COPY:
transfers.append((source, destination))
self.log.info('copying')
Expand Down