From 813f92a1ae14f77900f6f0dd4883b58c20b93700 Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Fri, 3 Feb 2023 18:14:40 -0500 Subject: [PATCH] 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. --- installer/installer.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/installer/installer.py b/installer/installer.py index e9d2cc392c3..86b062dc7b2 100644 --- a/installer/installer.py +++ b/installer/installer.py @@ -355,7 +355,10 @@ def install_user_scripts(self): 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)