We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 866c890 commit 8e88820Copy full SHA for 8e88820
test/spawn.jl
@@ -25,7 +25,7 @@ busybox_hash_correct(file) = bytes2hex(open(SHA.sha256, file)) == "ed2f95da95552
25
26
function _tryonce_download_from_cache(desired_url::AbstractString)
27
cache_url = "https://cache.julialang.org/$(desired_url)"
28
- cache_output_filename = joinpath(mktempdir(), "busybox")
+ cache_output_filename = joinpath(mktempdir(), "busybox" * (Sys.iswindows() ? ".exe" : ""))
29
cache_response = Downloads.request(
30
cache_url;
31
output = cache_output_filename,
0 commit comments