-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to download artifact iso_codes
#55
Comments
Looks like this is related to JuliaLang/Pkg.jl#3643 and JuliaPackaging/Yggdrasil#7888 |
Turing on "Developer Mode" on Windows 11 fixed the issue for me |
This got fixed for However, from what I can tell This artifact contains the following symlinks as well.
I don't think those files exist on Windows. Codejulia> using Tar: Tar
julia> using Pkg: Pkg, PlatformEngines
julia> using Downloads: download
julia> function tar_get_symlinks(tarball_path::AbstractString)
symlinks_output = Pair{String,String}[]
Tar.list(`$(PlatformEngines.exe7z()) x $tarball_path -so`) do header::Tar.Header
if (header.type == :symlink)
push!(symlinks_output, header.path=>header.link)
end
nothing
end
symlinks_output
end
tar_get_symlinks (generic function with 1 method)
julia> tar_get_symlinks(download("https://github.com/JuliaBinaryWrappers/libadwaita_jll.jl/releases/download/libadwaita-v1.2.0+0/libadwaita.v1.2.0.x86_64-w64-mingw32.tar.gz"))
3-element Vector{Pair{String, String}}:
"bin/gdk-pixbuf-pixdata" => "/usr/bin/gdk-pixbuf-pixdata"
"bin/glib-compile-resources" => "/usr/bin/glib-compile-resources"
"bin/glib-compile-schemas" => "/usr/bin/glib-compile-schemas" |
That's weird but yeah it doesn't seem to be related to anything I have control over, it seems to be an issue with I will keep this issue open so people know to turn on developer mode. Thank you. |
Hi,
I'm trying to install Mousetrap but getting the following error:
This results from running the following code:
My system info is:
The text was updated successfully, but these errors were encountered: