Skip to content

Commit

Permalink
feat(runner): support arm64 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
adriencaccia committed Jul 15, 2024
1 parent bf884b7 commit 0c1efd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/run/runner/check_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ pub fn check_system() -> Result<SystemInfo> {
}
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,
Expand Down

0 comments on commit 0c1efd2

Please sign in to comment.