mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
♻️ change how redshift version is passed
This commit is contained in:
parent
3e4b8a1522
commit
5d787d3fc3
1 changed files with 4 additions and 2 deletions
|
|
@ -271,9 +271,11 @@ class HoudiniSubmitDeadline(
|
|||
)
|
||||
elif family == "redshift_rop":
|
||||
plugin_info = RedshiftRenderPluginInfo(
|
||||
SceneFile=instance.data["ifdFile"],
|
||||
Version=os.getenv("REDSHIFT_VERSION", "3.5.22"),
|
||||
SceneFile=instance.data["ifdFile"]
|
||||
)
|
||||
if os.getenv("REDSHIFT_VERSION"):
|
||||
plugin_info.Version = os.getenv("REDSHIFT_VERSION"),
|
||||
|
||||
else:
|
||||
self.log.error(
|
||||
"Family '%s' not supported yet to split render job",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue