Skip to content

Commit

Permalink
fix convert call in Artifacts.jl (#46040)
Browse files Browse the repository at this point in the history
(cherry picked from commit e96b19d)
  • Loading branch information
KristofferC committed Oct 10, 2023
1 parent c57fdd6 commit 161c26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/Artifacts/src/Artifacts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ end
with_artifacts_directory(f::Function, artifacts_dir::AbstractString) =
with_artifacts_directory(f, String(artifacts_dir)::String)
query_override(pkg::Base.UUID, artifact_name::AbstractString; overrides::Dict=load_overrides()) =
query_override(pkg, String(artifact_name)::String; overrides=convert(Dict{Symbol, Any}(overrides)))
query_override(pkg, String(artifact_name)::String; overrides=convert(Dict{Symbol, Any}, overrides))
unpack_platform(entry::Dict, name::AbstractString, artifacts_toml::AbstractString) =
unpack_platform(convert(Dict{String, Any}, entry), String(name)::String, String(artifacts_toml)::String)
load_artifacts_toml(artifacts_toml::AbstractString; kwargs...) =
Expand Down

0 comments on commit 161c26c

Please sign in to comment.