From 23b1704382d9a243c1770166fdbb998e84426ab5 Mon Sep 17 00:00:00 2001 From: Adrien Cacciaguerra Date: Thu, 6 Jun 2024 11:19:51 -0400 Subject: [PATCH] feat(runner): support arm64 arch --- src/run/runner/check_system.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/run/runner/check_system.rs b/src/run/runner/check_system.rs index 5f5d0d7..d51469d 100644 --- a/src/run/runner/check_system.rs +++ b/src/run/runner/check_system.rs @@ -70,8 +70,8 @@ pub fn check_system() -> Result { } let arch = get_arch()?; debug!("Arch: {}", arch); - if arch != "amd64" { - bail!("Only amd64 is supported at the moment"); + if arch != "amd64" && arch != "arm64" { + bail!("Only amd64 and arm64 are supported at the moment"); } Ok(SystemInfo { os,