mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Merge pull request #3144 from pypeclub/bugfix/deadline-output-dir-issue
Deadline: fix the output directory
This commit is contained in:
commit
97a7b31cc2
1 changed files with 4 additions and 1 deletions
|
|
@ -440,7 +440,10 @@ class MayaSubmitDeadline(pyblish.api.InstancePlugin):
|
|||
|
||||
output_filename_0 = filename_0
|
||||
|
||||
dirname = os.path.dirname(output_filename_0)
|
||||
# this is needed because renderman handles directory and file
|
||||
# prefixes separately
|
||||
if self._instance.data["renderer"] == "renderman":
|
||||
dirname = os.path.dirname(output_filename_0)
|
||||
|
||||
# Create render folder ----------------------------------------------
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue