Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Aug 12, 2024
1 parent 75214aa commit b7e6eb7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ pub fn install_version(
})?;

print!("Checking standard library notarization");
let _ = std::io::stdout().flush();
let _ = std::io::stdout().flush();

let exit_status = std::process::Command::new(&julia_path)
.env("JULIA_LOAD_PATH", "@stdlib")
Expand All @@ -387,8 +387,7 @@ pub fn install_version(

if exit_status.success() {
println!("done.")
}
else {
} else {
println!("failed with {}.", exit_status);
}
}
Expand Down

0 comments on commit b7e6eb7

Please sign in to comment.