replaced OPENPYPE_ROOT with OPENPYPE_REPOS_ROOT in code

This commit is contained in:
iLLiCiTiT 2021-04-14 11:15:55 +02:00
parent 8d82fd8aa1
commit 95a82eeaf8
4 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ log = Logger().get_logger(__name__)
def discover_host_vendor_module(module_name):
host = os.environ["AVALON_APP"]
pype_root = os.environ["OPENPYPE_ROOT"]
pype_root = os.environ["OPENPYPE_REPOS_ROOT"]
main_module = module_name.split(".")[0]
module_path = os.path.join(
pype_root, "hosts", host, "vendor", main_module)