From 091293fda14544e4cfe70342a9501847ebd15758 Mon Sep 17 00:00:00 2001 From: "Travis A. Everett" Date: Wed, 6 Nov 2024 09:34:21 -0600 Subject: [PATCH] try to fix prerelease updates --- assemble_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assemble_installer.py b/assemble_installer.py index e3bfcc76e..ff9d40b9d 100644 --- a/assemble_installer.py +++ b/assemble_installer.py @@ -14,7 +14,7 @@ build = response.json() installer_url = build['buildoutputs']['out']['path'] system = build['system'] - if build['finished'] == "1": + if build['finished'] == 1: try: subprocess.call(f"nix-store -r {installer_url}", shell=True) except: