mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
fix(rv): fixed handling of RV_HOME
This commit is contained in:
parent
ed4feae385
commit
e86da58990
1 changed files with 5 additions and 1 deletions
|
|
@ -33,7 +33,11 @@ class RVAction(BaseAction):
|
|||
|
||||
# RV_HOME should be set if properly installed
|
||||
if os.environ.get('RV_HOME'):
|
||||
self.rv_path = os.environ.get('RV_HOME')
|
||||
self.rv_path = os.path.join(
|
||||
os.environ.get('RV_HOME'),
|
||||
'bin',
|
||||
'rv'
|
||||
)
|
||||
else:
|
||||
# if not, fallback to config file location
|
||||
self.load_config_data()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue