mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
parse environment values from settings before merge
This commit is contained in:
parent
c8eba1a181
commit
2a9f16b95d
1 changed files with 4 additions and 1 deletions
5
start.py
5
start.py
|
|
@ -129,7 +129,10 @@ def set_pype_global_environments() -> None:
|
|||
|
||||
# TODO Global environments will be stored in "general" settings so loading
|
||||
# will be modified and can be done in igniter.
|
||||
env = acre.merge(all_env["global"], dict(os.environ))
|
||||
env = acre.merge(
|
||||
acre.parse(all_env["global"]),
|
||||
dict(os.environ)
|
||||
)
|
||||
os.environ.clear()
|
||||
os.environ.update(env)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue