Skip to content

Commit

Permalink
fix error path in precompilepkgs (JuliaLang#53606)
Browse files Browse the repository at this point in the history
this was accidentally left when porting this from Pkg.jl
  • Loading branch information
KristofferC authored and mkitti committed Apr 13, 2024
1 parent d7269fa commit 8ef4ba4
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 8ef4ba4

Please sign in to comment.