Skip to content

Commit

Permalink
fix error path in precompilepkgs (#53606)
Browse files Browse the repository at this point in the history
this was accidentally left when porting this from Pkg.jl

(cherry picked from commit 427da5c)
  • Loading branch information
KristofferC committed Mar 6, 2024
1 parent d98f9cd commit fb60a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/precompilation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ function precompilepkgs(pkgs::Vector{String}=String[]; internal_call::Bool=false
# TODO: actually handle packages from other envs in the stack
return
else
error("No direct dependencies outside of the sysimage found matching $(repr([p.name for p in pkgs]))")
error("No direct dependencies outside of the sysimage found matching $(pkgs)")
end
end

Expand Down

0 comments on commit fb60a88

Please sign in to comment.