We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99122b commit 557133dCopy full SHA for 557133d
1 file changed
to_md.py
@@ -51,7 +51,7 @@ def get_bucket_data():
51
52
if is_valid_product(product):
53
pass
54
- elif product.count("-") == 1 and is_valid_product(product.split("-")[0]) and os == "arm64":
+ elif product.count("-") and is_valid_product(product.rsplit("-", 1)[0]) and os == "arm64":
55
parts = key.removesuffix(".zip").rsplit("-", 4)
56
product, version, commit, os, arm64 = parts
57
os = f"{os}-{arm64}"
0 commit comments