Skip to content

Commit bebfdac

Browse files
feat: allow usage on any x86 or arm os with a warning
1 parent d6b498f commit bebfdac

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/run/check_system.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,14 @@ pub fn check_system(system_info: &SystemInfo) -> Result<()> {
128128
return Ok(());
129129
}
130130

131+
match system_info.arch.as_str() {
132+
"x86_64" | "aarch64" => {
133+
warn!("Unsupported system: {:?}", system_info);
134+
warn!("Continuing with best effort support");
135+
return Ok(());
136+
}
137+
_ => {}
138+
}
139+
131140
bail!("Unsupported system: {:?}", system_info);
132141
}

0 commit comments

Comments
 (0)