Skip to content

Commit 0799d08

Browse files
authored
Merge pull request #851 from nathanchance/fix-alpine-get_cbl_name-for-real
2 parents 3bf9f76 + c0ff0b7 commit 0799d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_cbl_name():
8181
"x86_64": "x86_64"
8282
}
8383
# The URL is https://.../stable.<arch>.config
84-
alpine_arch = base_config.split(".")[1]
84+
alpine_arch = base_config.split(".")[-2]
8585
return alpine_to_cbl[alpine_arch]
8686
if "fedora" in base_config:
8787
fedora_to_cbl = {

0 commit comments

Comments
 (0)