mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix non-interactive behavior of config_invokeai.py
This corrects behavior of --no-interactive, which was in fact asking for interaction! New behavior: If you pass --no-interactive it will behave exactly as it did before and completely skip the downloading of SD models. If you pass --yes it will do almost the same, but download the recommended models. The combination of the two arguments is the same as --no-interactive.
This commit is contained in:
parent
71c4f401b0
commit
16df759499
@ -594,11 +594,11 @@ def initialize_rootdir(root:str,yes_to_all:bool=False):
|
|||||||
print(f'You may also change the runtime directory by setting the environment variable INVOKEAI_ROOT.\n')
|
print(f'You may also change the runtime directory by setting the environment variable INVOKEAI_ROOT.\n')
|
||||||
for name in ('models','configs','scripts','frontend/dist'):
|
for name in ('models','configs','scripts','frontend/dist'):
|
||||||
os.makedirs(os.path.join(root,name), exist_ok=True)
|
os.makedirs(os.path.join(root,name), exist_ok=True)
|
||||||
for src in ('configs','scripts','frontend/dist'):
|
for src in ['configs']:
|
||||||
dest = os.path.join(root,src)
|
dest = os.path.join(root,src)
|
||||||
if not os.path.samefile(src,dest):
|
if not os.path.samefile(src,dest):
|
||||||
shutil.copytree(src,dest,dirs_exist_ok=True)
|
shutil.copytree(src,dest,dirs_exist_ok=True)
|
||||||
os.makedirs(outputs)
|
os.makedirs(outputs, exist_ok=True)
|
||||||
|
|
||||||
init_file = os.path.expanduser(Globals.initfile)
|
init_file = os.path.expanduser(Globals.initfile)
|
||||||
if not os.path.exists(init_file):
|
if not os.path.exists(init_file):
|
||||||
@ -679,7 +679,7 @@ def main():
|
|||||||
if Globals.root == '' \
|
if Globals.root == '' \
|
||||||
or not os.path.exists(os.path.join(Globals.root,'configs/stable-diffusion/v1-inference.yaml')) \
|
or not os.path.exists(os.path.join(Globals.root,'configs/stable-diffusion/v1-inference.yaml')) \
|
||||||
or not os.path.exists(os.path.join(Globals.root,'frontend/dist')):
|
or not os.path.exists(os.path.join(Globals.root,'frontend/dist')):
|
||||||
initialize_rootdir(Globals.root,opt.yes_to_all)
|
initialize_rootdir(Globals.root,(not opt.interactive) or opt.yes_to_all)
|
||||||
|
|
||||||
print(f'(Initializing with runtime root {Globals.root})\n')
|
print(f'(Initializing with runtime root {Globals.root})\n')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user