Skip to content

Commit

Permalink
chore: switch default arm/amd selection
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Jan 22, 2024
1 parent e9c28c7 commit 8b253c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ def _install_binaries(self, runner_binary: Path, arch: ARCH) -> None:
Snap(
name="aproxy",
channel="edge",
revision=APROXY_AMD_REVISION if arch == ARCH.X64 else APROXY_ARM_REVISION,
revision=APROXY_ARM_REVISION if arch == ARCH.ARM64 else APROXY_AMD_REVISION,
)
]
)
Expand Down

0 comments on commit 8b253c7

Please sign in to comment.