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 5dbdef4 commit 2082d9eCopy full SHA for 2082d9e
src/wizard/obtain_source.jl
@@ -109,7 +109,8 @@ function download_source(state::WizardState)
109
close(repo)
110
else
111
# Download the source tarball
112
- source_path = joinpath(state.workspace, basename(url))
+ basename_without_urlparams(url) = first(split(basename(url), "?"))
113
+ source_path = joinpath(state.workspace, basename_without_urlparams(url))
114
115
if isfile(source_path)
116
# Try to match everything up to but not including ".tar.*" to strip multiple file extensions
0 commit comments