mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
do not install the "update" script
- The update script doesn't work yet, so we shouldn't install it. - For now, users update by re-running the installer.
This commit is contained in:
parent
0d141c1d84
commit
813f92a1ae
@ -355,7 +355,10 @@ class InvokeAiInstance:
|
||||
|
||||
ext = "bat" if OS == "Windows" else "sh"
|
||||
|
||||
for script in ["invoke", "update"]:
|
||||
#scripts = ['invoke', 'update']
|
||||
scripts = ['invoke']
|
||||
|
||||
for script in scripts:
|
||||
src = Path(__file__).parent / "templates" / f"{script}.{ext}.in"
|
||||
dest = self.runtime / f"{script}.{ext}"
|
||||
shutil.copy(src, dest)
|
||||
|
Loading…
Reference in New Issue
Block a user