Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installer/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def configure(self):

introduction()

from invokeai.frontend.install import invokeai_configure
from invokeai.frontend.install.invokeai_configure import invokeai_configure

# NOTE: currently the config script does its own arg parsing! this means the command-line switches
# from the installer will also automatically propagate down to the config script.
Expand Down
3 changes: 2 additions & 1 deletion invokeai/frontend/merge/merge_diffusers.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ def run_cli(args: Namespace):

def main():
args = _parse_args()
config.parse_args(["--root", str(args.root_dir)])
if args.root_dir:
config.parse_args(["--root", str(args.root_dir)])

try:
if args.front_end:
Expand Down