Skip to content

Commit

Permalink
do not install the "update" script
Browse files Browse the repository at this point in the history
- The update script doesn't work yet, so we shouldn't install it.
- For now, users update by re-running the installer.
  • Loading branch information
lstein authored and ebr committed Feb 4, 2023
1 parent 0d141c1 commit 813f92a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion installer/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 813f92a

Please sign in to comment.