mirror of
https://github.com/vladmandic/automatic
synced 2026-09-20 01:31:13 +02:00
Extension Install Error Fix
Extensions which have a install.py fail to install if we use a separate data directory and provide relative path like "--data-dir=../../SD-Data". Using realpath method to absolute path of installation script fixes the issue.
This commit is contained in:
+1
-1
@@ -444,7 +444,7 @@ def install_repositories():
|
||||
|
||||
# run extension installer
|
||||
def run_extension_installer(folder):
|
||||
path_installer = os.path.join(folder, "install.py")
|
||||
path_installer = os.path.realpath(os.path.join(folder, "install.py"))
|
||||
if not os.path.isfile(path_installer):
|
||||
return
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user