Commit 0c9282b8 authored by AUTOMATIC1111's avatar AUTOMATIC1111

Merge pull request #12832 from catboxanon/fix/skip-install-extensions

Honor `--skip-install` for extension installers
parent 444f1029
......@@ -394,7 +394,8 @@ def prepare_environment():
run_pip(f"install -r \"{requirements_file}\"", "requirements")
startup_timer.record("install requirements")
run_extensions_installers(settings_file=args.ui_settings_file)
if not args.skip_install:
run_extensions_installers(settings_file=args.ui_settings_file)
if args.update_check:
version_check(commit)
......
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