From a24dd287458e3fba3a46c3242f12736556a398b4 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Fri, 8 Aug 2025 18:14:27 -0700 Subject: [PATCH] fix --- system/ui/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/ui/setup.py b/system/ui/setup.py index 939f7deb89..3f96834497 100755 --- a/system/ui/setup.py +++ b/system/ui/setup.py @@ -364,10 +364,10 @@ class Setup(Widget): self.download_failed(self.download_url, "No custom software found at this URL.") return - os.rename(tmpfile, "/tmp/installer") - os.chmod("/tmp/installer", 0o755) + os.rename(tmpfile, INSTALLER_DESTINATION_PATH) + os.chmod(INSTALLER_DESTINATION_PATH, 0o755) - with open("/tmp/installer_url", "w") as f: + with open(INSTALLER_URL_PATH, "w") as f: f.write(self.download_url) gui_app.request_close()