mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge branch 'develop' into bugfix/OP-6806_Houdini-wrong-frame-calculation-with-handles
This commit is contained in:
commit
3abc227198
155 changed files with 12916 additions and 1064 deletions
|
|
@ -13,7 +13,8 @@ from openpype.pipeline.publish import (
|
|||
)
|
||||
from openpype.lib import (
|
||||
BoolDef,
|
||||
NumberDef
|
||||
NumberDef,
|
||||
is_running_from_build
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -230,6 +231,11 @@ class FusionSubmitDeadline(
|
|||
"OPENPYPE_LOG_NO_COLORS",
|
||||
"IS_TEST"
|
||||
]
|
||||
|
||||
# Add OpenPype version if we are running from build.
|
||||
if is_running_from_build():
|
||||
keys.append("OPENPYPE_VERSION")
|
||||
|
||||
environment = dict({key: os.environ[key] for key in keys
|
||||
if key in os.environ}, **legacy_io.Session)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue