From 982a60e85fac8f659f02f209b3029bd826f6d08e Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Tue, 11 Mar 2025 11:32:53 -0700 Subject: [PATCH] Add linux form factor. --- glob/cnr_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/glob/cnr_utils.py b/glob/cnr_utils.py index 67dfa1e6..6a61aaa3 100644 --- a/glob/cnr_utils.py +++ b/glob/cnr_utils.py @@ -42,6 +42,7 @@ async def _get_cnr_data(cache_mode=True, dont_wait=True): system = platform.system().lower() is_windows = system == 'windows' is_mac = system == 'darwin' + is_linux = system == 'linux' # Get ComfyUI version tag if is_desktop: @@ -62,6 +63,8 @@ async def _get_cnr_data(cache_mode=True, dont_wait=True): form_factor = 'git-windows' elif is_mac: form_factor = 'git-mac' + elif is_linux: + form_factor = 'git-linux' else: form_factor = 'other'