Skip to content

Commit

Permalink
ttm: fix regexp to match 'livecd-x11' check
Browse files Browse the repository at this point in the history
  • Loading branch information
ggardet committed Dec 1, 2023
1 parent 1926dc5 commit 1afc29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttm/releaser.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def maxsize_for_package(self, package, arch):
if re.match(r'.*-dvd5-.*', package):
return 4700372992 # a DVD needs to match

if re.match(r'livecd-x11', package) and arch == 'x86_64':
if re.match(r'livecd-x11-.*', package) and arch == 'x86_64':
return 681574400 # not a full CD on x86

if re.match(r'livecd-.*', package):
Expand Down

0 comments on commit 1afc29b

Please sign in to comment.