Skip to content

Commit 34fff8d

Browse files
Merge pull request #52 from craigcomstock/CFE-4049
Fixed package selection for x86_64/amd64
2 parents 5410194 + 39a63cd commit 34fff8d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cf_remote/remote.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,8 @@ def get_package_from_host_info(
366366
tags.append("arm64")
367367
if arch in ("i386", "i486", "i586", "i686"):
368368
tags.append("32")
369+
if arch in ("x86_64", "amd64"):
370+
tags.append(arch)
369371

370372
extension = None
371373
if package_tags is not None and "msi" in package_tags:

0 commit comments

Comments
 (0)