Skip to content

Commit

Permalink
Improve check notarization message
Browse files Browse the repository at this point in the history
Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com>
  • Loading branch information
davidanthoff and IanButterworth authored Aug 12, 2024
1 parent 9fc272b commit 6cfc120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ pub fn install_version(
.env("JULIA_LOAD_PATH", "@stdlib")
.arg("--startup-file=no")
.arg("-e")
.arg("println(\"Notarizing standard library\"); foreach(p -> @eval(import $(Symbol(p))), filter!(x -> isfile(joinpath(Sys.STDLIB, x, \"src\", \"$(x).jl\")), readdir(Sys.STDLIB))); println(\"Finished notarizing standard library\")")
.arg("println(\"Checking standard library notarization\"); foreach(p -> @eval(import $(Symbol(p))), filter!(x -> isfile(joinpath(Sys.STDLIB, x, \"src\", \"$(x).jl\")), readdir(Sys.STDLIB))); println(\"Finished checking standard library notarization\")")
// .stdout(std::process::Stdio::null())
// .stderr(std::process::Stdio::null())
// .stdin(std::process::Stdio::null())
Expand Down

0 comments on commit 6cfc120

Please sign in to comment.