Skip to content

Commit 427da5c

Browse files
authored
fix error path in precompilepkgs (#53606)
this was accidentally left when porting this from Pkg.jl
1 parent 58291db commit 427da5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/precompilation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ function precompilepkgs(pkgs::Vector{String}=String[]; internal_call::Bool=false
436436
# TODO: actually handle packages from other envs in the stack
437437
return
438438
else
439-
error("No direct dependencies outside of the sysimage found matching $(repr([p.name for p in pkgs]))")
439+
error("No direct dependencies outside of the sysimage found matching $(pkgs)")
440440
end
441441
end
442442

0 commit comments

Comments
 (0)