Skip to content

Commit cafb802

Browse files
committed
Fix versions script to accept versions without -ce suffix
Signed-off-by: Joffrey F <[email protected]>
1 parent e6889eb commit cafb802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def main():
6666
Version.parse(
6767
v.strip('"').lstrip('docker-').rstrip('.tgz').rstrip('-x86_64')
6868
) for v in re.findall(
69-
r'"docker-[0-9]+\.[0-9]+\.[0-9]+-.*tgz"', content
69+
r'"docker-[0-9]+\.[0-9]+\.[0-9]+-?.*tgz"', content
7070
)
7171
]
7272
sorted_versions = sorted(

0 commit comments

Comments
 (0)