1
0
mirror of https://github.com/gryf/boxpy.git synced 2025-12-18 13:00:17 +01:00

Fix minor issue with pattern for centos image

This commit is contained in:
2022-11-16 09:10:49 +01:00
parent b7b4ba5cbc
commit e6d4d8ab7a

2
box.py
View File

@@ -1039,7 +1039,7 @@ class Fedora(Image):
class CentosStream(Image):
URL = "https://cloud.centos.org/centos/%s-stream/%s/images/%s"
IMG = '.*(CentOS-Stream-GenericCloud-%s-[0-9]+\.[0-9].%s.qcow2).*'
IMG = '.*(CentOS-Stream-GenericCloud-%s-[0-9]+.[0-9].%s.qcow2).*'
CHKS = "CHECKSUM"
def __init__(self, vbox, version, arch, release):