Skip to content

Commit 8cd96a1

Browse files
authored
fix lurking bug in _collect_artifacts (#919)
`HostPlatform` was not fully qualified in the kwarg, though this bug was never hit because the kwarg default is never used.
1 parent d5a8618 commit 8cd96a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PackageCompiler.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ function pretty_byte_str(size)
14491449
end
14501450

14511451
# Copy pasted from Pkg since `collect_artifacts` doesn't allow lazy artifacts to get installed
1452-
function _collect_artifacts(pkg_root::String; platform::Base.BinaryPlatforms.AbstractPlatform=HostPlatform(), include_lazy::Bool)
1452+
function _collect_artifacts(pkg_root::String; platform::Base.BinaryPlatforms.AbstractPlatform=Base.BinaryPlatforms.HostPlatform(), include_lazy::Bool)
14531453
# Check to see if this package has an (Julia)Artifacts.toml
14541454
artifacts_tomls = Tuple{String,Base.TOML.TOMLDict}[]
14551455

0 commit comments

Comments
 (0)