Skip to content

Commit

Permalink
update fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-cool committed Oct 17, 2024
1 parent d8b333a commit ec82062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def update(self, btn):
btn.text = "Downloading update"
btn.update_state = "downloading_update"
self.download_proc = subprocess.run(["rm", f"{system_info.update_dir}/Virtuoso_update.zip"])
self.download_proc = subprocess.Popen(["wget", "-P", f"{system_info.update_dir}/Virtuoso", self.update_url])
self.download_proc = subprocess.Popen(["wget", "-P", f"{system_info.update_dir}", self.update_url])
return

if btn.update_state == "wait_for_reboot":
Expand Down

0 comments on commit ec82062

Please sign in to comment.