pull/277/head^2
Rob 2024-12-18 20:24:52 -05:00
rodzic 309f836ab5
commit 20ec417c35
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -13,6 +13,8 @@ warnings.simplefilter("once")
# bpy.ops.extensions.repo_sync_all(use_active_only=False) # bpy.ops.extensions.repo_sync_all(use_active_only=False)
# bpy.ops.extensions.package_install_files(filepath=f"{sys.argv[1]}", repo="user_default") # bpy.ops.extensions.package_install_files(filepath=f"{sys.argv[1]}", repo="user_default")
sys.path.insert(0, os.path.abspath(".."))
# Get the scene # Get the scene
s = bpy.context.scene s = bpy.context.scene
s.render.engine = "FABEX_RENDER" s.render.engine = "FABEX_RENDER"

Wyświetl plik

@ -36,7 +36,7 @@ with tempfile.TemporaryDirectory() as td:
) )
print("installed addon okay") print("installed addon okay")
sys.exit(0) sys.exit(0)
except Exception as e: except subprocess.CalledProcessError as e:
print("Install addon failed, retrying:", e) print("Install addon failed, retrying:", e)
print("Command output:") print("Command output:")
print("------------------------------") print("------------------------------")