File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ IF /I "%choice%" == "1" (
4141 python .venv\Scripts\invokeai-configure.exe --skip-sd-weight --skip-support-models
4242) ELSE IF /I "%choice%" == "7" (
4343 echo Running invokeai-configure...
44- python .venv\Scripts\invokeai-configure.exe --yes --default_only
44+ python .venv\Scripts\invokeai-configure.exe --yes --skip-sd-weight
4545) ELSE IF /I "%choice%" == "8" (
4646 echo Developer Console
4747 echo Python command is:
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ do_choice() {
8282 7)
8383 clear
8484 printf " Re-run the configure script to fix a broken install or to complete a major upgrade\n"
85- invokeai-configure --root ${INVOKEAI_ROOT} --yes --default_only
85+ invokeai-configure --root ${INVOKEAI_ROOT} --yes --default_only --skip-sd-weights
8686 ;;
8787 8)
8888 clear
Original file line number Diff line number Diff line change @@ -650,7 +650,8 @@ def process_and_execute(
650650):
651651 # need to reinitialize config in subprocess
652652 config = InvokeAIAppConfig .get_config ()
653- config .parse_args (['--root' ,opt .root ])
653+ args = ["--root" , opt .root ] if opt .root else []
654+ config .parse_args (args )
654655
655656 # set up so that stderr is sent to conn_out
656657 if conn_out :
Original file line number Diff line number Diff line change 1- __version__ = "3.0.1post2 "
1+ __version__ = "3.0.1post3 "
You can’t perform that action at this time.
0 commit comments