Skip to content

Commit 557133d

Browse files
committed
update
1 parent a99122b commit 557133d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

to_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_bucket_data():
5151

5252
if is_valid_product(product):
5353
pass
54-
elif product.count("-") == 1 and is_valid_product(product.split("-")[0]) and os == "arm64":
54+
elif product.count("-") and is_valid_product(product.rsplit("-", 1)[0]) and os == "arm64":
5555
parts = key.removesuffix(".zip").rsplit("-", 4)
5656
product, version, commit, os, arm64 = parts
5757
os = f"{os}-{arm64}"

0 commit comments

Comments
 (0)