Follow redirects when downloading boxes [GH-1607]
This commit is contained in:
parent
b49bd8b8ea
commit
dc31725049
|
@ -3,6 +3,7 @@
|
|||
BUG FIXES:
|
||||
|
||||
- Chef solo run list properly set. [GH-1608]
|
||||
- Follow 30x redirects when downloading boxes. [GH-1607]
|
||||
|
||||
## 1.2.0 (April 16, 2013)
|
||||
|
||||
|
|
|
@ -30,6 +30,7 @@ module Vagrant
|
|||
# Build the list of parameters to execute with cURL
|
||||
options = [
|
||||
"--fail",
|
||||
"--location",
|
||||
"--max-redirs", "10",
|
||||
"--output", @destination
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue