Commit 00e393ce authored by AUTOMATIC1111's avatar AUTOMATIC1111

Merge pull request #12833 from catboxanon/fix/dont-print-blank-stdout

Don't print blank stdout in extension installers
parent 0c9282b8
...@@ -228,7 +228,9 @@ def run_extension_installer(extension_dir): ...@@ -228,7 +228,9 @@ def run_extension_installer(extension_dir):
env = os.environ.copy() env = os.environ.copy()
env['PYTHONPATH'] = f"{os.path.abspath('.')}{os.pathsep}{env.get('PYTHONPATH', '')}" env['PYTHONPATH'] = f"{os.path.abspath('.')}{os.pathsep}{env.get('PYTHONPATH', '')}"
print(run(f'"{python}" "{path_installer}"', errdesc=f"Error running install.py for extension {extension_dir}", custom_env=env)) stdout = run(f'"{python}" "{path_installer}"', errdesc=f"Error running install.py for extension {extension_dir}", custom_env=env)
if stdout:
print(stdout)
except Exception as e: except Exception as e:
errors.report(str(e)) errors.report(str(e))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment