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

Commit

Permalink
Merge pull request #995 from pypeclub/bugfix/disable-hardlinks-in-looks
Browse files Browse the repository at this point in the history
Maya: Looks - disable hardlinks
  • Loading branch information
mkolar authored Feb 8, 2021
2 parents 0ad99a0 + 1dfeaeb commit 421fd57
Showing 1 changed file with 8 additions and 0 deletions.
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

0 comments on commit 421fd57

Please sign in to comment.