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 Jun 7, 2024
1 parent 32604b1 commit 0d32197
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 0d32197

Please sign in to comment.