Skip to content

Commit 39a63cd

Browse files
committed
Fixed package selection for x86_64/amd64
In some cases the arm64/aarch64 package might be selected instead. Ticket: CFE-4049 Changelog: title
1 parent 173cac0 commit 39a63cd

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)