diff --git a/src/setup.rs b/src/setup.rs index 6c24bf00cce0..747d3435108a 100644 --- a/src/setup.rs +++ b/src/setup.rs @@ -194,7 +194,10 @@ fn download_url() -> String { fn fail_if_unsupported_target() -> Result<()> { // This is basically going to be reduced to a compile-time constant match TARGET { - "x86_64-unknown-linux-gnu" | "x86_64-apple-darwin" | "aarch64-apple-darwin" => Ok(()), + "x86_64-unknown-linux-gnu" + | "x86_64-apple-darwin" + | "aarch64-unknown-linux-gnu" + | "aarch64-apple-darwin" => Ok(()), _ => bail!("Kani does not support this platform (Rust target {})", TARGET), } }