Skip to content

Commit

Permalink
chore(fmt): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mickvandijke committed Aug 2, 2024
1 parent 91be520 commit c9436a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ fn get_platform() -> Result<String> {
}
"macos" => match ARCH {
"x86_64" | "aarch64" => Ok(format!("{}-apple-darwin", ARCH)),
_ => Err(eyre!("We currently do not have binaries for the {OS}/{ARCH} combination")),
_ => Err(eyre!(
"We currently do not have binaries for the {OS}/{ARCH} combination"
)),
},
&_ => Err(eyre!("{OS} is not currently supported by safeup")),
}
Expand Down

0 comments on commit c9436a9

Please sign in to comment.