From 427da5c38ee08ab8477f2cd706c605d2d0bcb84c Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Tue, 5 Mar 2024 18:23:08 +0100 Subject: [PATCH] fix error path in `precompilepkgs` (#53606) this was accidentally left when porting this from Pkg.jl --- base/precompilation.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/precompilation.jl b/base/precompilation.jl index 4efd35836a29d..9eaa0539f522e 100644 --- a/base/precompilation.jl +++ b/base/precompilation.jl @@ -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