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)