From 73ddde7d3f78e3c3b92449ea74ad05dcfa138ec0 Mon Sep 17 00:00:00 2001 From: Kevin Turner <83819+keturn@users.noreply.github.com> Date: Sun, 27 Nov 2022 09:09:38 -0800 Subject: [PATCH] fix(configure): prepend root to config path --- scripts/configure_invokeai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configure_invokeai.py b/scripts/configure_invokeai.py index 2d8e83720e..fd593bd584 100644 --- a/scripts/configure_invokeai.py +++ b/scripts/configure_invokeai.py @@ -782,7 +782,7 @@ def main(): print('** DOWNLOADING DIFFUSION WEIGHTS **') download_weights(opt) else: - config_path = Path(opt.config_file or Default_config_file) + config_path = Path(Globals.root, opt.config_file or Default_config_file) if config_path.exists(): download_diffusers_in_config(config_path, full_precision=opt.full_precision) else: