diff --git a/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py b/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py index 60025ff3c0..95afa77249 100644 --- a/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py +++ b/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py @@ -28,7 +28,7 @@ class CreateAlembicCamera(plugin.HoudiniCreator): instance_node = hou.node(instance.get("instance_node")) filepath = "{staging_dir}/{product_name}.abc".format( - staging_dir=hou.text.expandString("$HIP/pyblish/"), + staging_dir=hou.text.expandString("$HIP/pyblish"), # keep dynamic link to product name product_name="`chs(\"AYON_productName\")`", ) diff --git a/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py b/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py index e3dab9ed41..2913f3cdbf 100644 --- a/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py +++ b/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py @@ -29,7 +29,7 @@ class CreatePointCache(plugin.HoudiniCreator): instance_node = hou.node(instance.get("instance_node")) filepath = "{staging_dir}/{product_name}.abc".format( - staging_dir=hou.text.expandString("$HIP/pyblish/"), + staging_dir=hou.text.expandString("$HIP/pyblish"), # keep dynamic link to product name product_name="`chs(\"AYON_productName\")`", )