Skip to content

Commit

Permalink
Download failure with curl no longer create a file
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Mar 17, 2017
1 parent b549d2b commit 9932c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/interactiveutil.jl
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ else
if downloadcmd == :wget
run(`wget -O $filename $url`)
elseif downloadcmd == :curl
run(`curl -o $filename -L $url`)
run(`curl -L -f -o $filename $url`)
elseif downloadcmd == :fetch
run(`fetch -f $filename $url`)
else
Expand Down

0 comments on commit 9932c2b

Please sign in to comment.