Merge pull request #9594 from timolehto/patch-1

ruby ex missing a step & upload use wrong verb
This commit is contained in:
Brian Cain 2018-03-22 10:19:25 -07:00 committed by GitHub
commit ab99a5d604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -234,7 +234,10 @@ In order to create a usable box on Vagrant Cloud, perform the following steps:
upload_path = response.parse['upload_path']
# Upload the box image
HTTP.post upload_path, body: File.open("virtualbox-1.2.3.box")
HTTP.put upload_path, body: File.open("virtualbox-1.2.3.box")
# Release the version
api.put("/api/v1/box/myuser/test/version/1.2.3/release")
```
</div>
</div>