From 38038203ea0e79b5076e6760eb6b5d1cb5629d3d Mon Sep 17 00:00:00 2001 From: Rick Lan Date: Wed, 24 Dec 2025 14:16:27 +0800 Subject: [PATCH] fix: testing branch --- system/updated/updated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/updated/updated.py b/system/updated/updated.py index 0f11d073e..93fa37196 100755 --- a/system/updated/updated.py +++ b/system/updated/updated.py @@ -370,7 +370,7 @@ class Updater: m = re.match(r'^(\d+)\.(\d+)\.(\d+)', name) # Logic: - # 1. Allow exactly 'pre-build' + # 1. Allow exactly 'pre-build' or 'testing' # 2. OR Allow if it parses as a version AND that version is >= 0.9.8 if name in ('testing', 'pre-build') or (m and tuple(map(int, m.groups())) >= (0, 9, 8)): self.branches[name] = x.group('commit_sha')