Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/Operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2445,9 +2445,12 @@ function sandbox(
catch err # TODO
err isa Resolve.ResolverError || rethrow()
allow_reresolve || rethrow()
@debug err
resolver_err_str = sprint(show, err; context = ctx.io)
ind = " "^(Pkg.pkgstyle_indent)
resolver_err_str_indented = ind * replace(resolver_err_str, "\n" => "\n" * ind)
printpkgstyle(ctx.io, :Resolve, "Attempted resolve with fixed versions:\n$(resolver_err_str_indented)", color = Base.warn_color())
msg = string(
"Could not use exact versions of packages in manifest, re-resolving. ",
"Could not use exact versions of packages in manifest, re-resolving while allowing changes.\n",
"Note: if you do not check your manifest file into source control, ",
"then you can probably ignore this message. ",
"However, if you do check your manifest file into source control, ",
Expand Down
Loading