Skip to content

Commit

Permalink
fix convert call in Artifacts.jl (JuliaLang#46040)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored and Francesco Fucci committed Aug 11, 2022
1 parent 4e1a394 commit 59f2e6c
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 @@ -711,7 +711,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 59f2e6c

Please sign in to comment.