From 9228d2f706ac6e16ea7830da06400ac565cf1df6 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Tue, 26 Mar 2024 12:55:14 -0400 Subject: [PATCH] throw an error type that doesn't show a stacktrace --- base/precompilation.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/precompilation.jl b/base/precompilation.jl index a823b2b5798527..bcd429a9f7a535 100644 --- a/base/precompilation.jl +++ b/base/precompilation.jl @@ -943,7 +943,7 @@ function precompilepkgs(pkgs::Vector{String}=String[]; end else println(io) - error(err_msg) + throw(PkgPrecompileError(err_msg)) end end end