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
  • Loading branch information
KristofferC authored Mar 5, 2024
1 parent 58291db commit 427da5c
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 427da5c

Please sign in to comment.