From 3dae818df602dc70fbed84086da9021fa958df9f Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Mon, 20 May 2024 07:54:07 +0200 Subject: [PATCH] Include staging dir with the frames to be published --- .../hosts/houdini/plugins/publish/collect_frames.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/ayon_core/hosts/houdini/plugins/publish/collect_frames.py b/client/ayon_core/hosts/houdini/plugins/publish/collect_frames.py index b38ebc6e2f..6cd6e7456a 100644 --- a/client/ayon_core/hosts/houdini/plugins/publish/collect_frames.py +++ b/client/ayon_core/hosts/houdini/plugins/publish/collect_frames.py @@ -60,7 +60,10 @@ class CollectFrames(pyblish.api.InstancePlugin): # todo: `frames` currently conflicts with "explicit frames" for a # for a custom frame list. So this should be refactored. - instance.data.update({"frames": result}) + instance.data.update({ + "frames": result, + "stagingDir": os.path.dirname(output) + }) @staticmethod def create_file_list(match, start_frame, end_frame):