From f60b02f960a09b3aab9b01998d6b246b46b66d96 Mon Sep 17 00:00:00 2001 From: mawei Date: Mon, 15 Jun 2026 22:08:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86dp-dev=E5=8A=A0=E5=85=A5?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=A3=80=E6=9F=A5=E7=99=BD=E5=90=8D=E5=8D=95?= =?UTF-8?q?=EF=BC=8C=E4=BF=AE=E5=A4=8D=E8=AE=BE=E5=A4=87=E4=B8=80=E7=9B=B4?= =?UTF-8?q?=E8=AF=AF=E6=8A=A5=E6=9C=89=E6=9B=B4=E6=96=B0=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 35558627..f3decc52 100755 --- a/system/updated/updated.py +++ b/system/updated/updated.py @@ -375,7 +375,7 @@ class Updater: # Logic: # 1. Allow exactly 'pre-build' # 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)): + if name in ('testing', 'pre-build', 'dp-dev') or (m and tuple(map(int, m.groups())) >= (0, 9, 8)): self.branches[name] = x.group('commit_sha') cur_branch = self.get_branch(OVERLAY_MERGED)