diff --git a/pype/plugins/maya/publish/extract_look.py b/pype/plugins/maya/publish/extract_look.py index 7a5dc25fcf3..7317864ab1d 100644 --- a/pype/plugins/maya/publish/extract_look.py +++ b/pype/plugins/maya/publish/extract_look.py @@ -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')