Skip to content

Commit 299aa48

Browse files
Merge pull request #23444 from 0x47/curl_globbing
Disable globbing for curl download (#23254)
2 parents 991e26a + daa5575 commit 299aa48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/interactiveutil.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ else
648648
rethrow()
649649
end
650650
elseif downloadcmd == :curl
651-
run(`curl -L -f -o $filename $url`)
651+
run(`curl -g -L -f -o $filename $url`)
652652
elseif downloadcmd == :fetch
653653
run(`fetch -f $filename $url`)
654654
else

0 commit comments

Comments
 (0)