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,