mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(config): set ignore_missing_core_models when provided as CLI arg
This commit is contained in:
parent
1cb1b60b4c
commit
9fa9ebe386
@ -411,6 +411,8 @@ def get_config() -> InvokeAIAppConfig:
|
|||||||
# CLI args trump environment variables
|
# CLI args trump environment variables
|
||||||
if root := getattr(args, "root", None):
|
if root := getattr(args, "root", None):
|
||||||
config.set_root(Path(root))
|
config.set_root(Path(root))
|
||||||
|
if ignore_missing_core_models := getattr(args, "ignore_missing_core_models", None):
|
||||||
|
config.ignore_missing_core_models = ignore_missing_core_models
|
||||||
|
|
||||||
# TODO(psyche): This shouldn't be wrapped in a try/catch. The configuration script imports a number of classes
|
# TODO(psyche): This shouldn't be wrapped in a try/catch. The configuration script imports a number of classes
|
||||||
# from throughout the app, which in turn call get_config(). At that time, there may not be a config file to
|
# from throughout the app, which in turn call get_config(). At that time, there may not be a config file to
|
||||||
|
Loading…
Reference in New Issue
Block a user