ttm: fix regexp to match 'livecd-x11' check

This commit is contained in:
Guillaume GARDET 2023-12-01 09:59:17 +01:00
parent 1926dc5a98
commit 1afc29ba34

View File

@ -88,7 +88,7 @@ class ToTestReleaser(ToTestManager):
if re.match(r'.*-dvd5-.*', package): if re.match(r'.*-dvd5-.*', package):
return 4700372992 # a DVD needs to match 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 return 681574400 # not a full CD on x86
if re.match(r'livecd-.*', package): if re.match(r'livecd-.*', package):