From a350f80e2f039288fde47ec13a9654572d0b68e8 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 12 Feb 2014 11:52:02 -0800 Subject: [PATCH] website/www: fix downloads --- website/www/helpers/download_helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/www/helpers/download_helpers.rb b/website/www/helpers/download_helpers.rb index 0bf4ea6ca..a769d7beb 100644 --- a/website/www/helpers/download_helpers.rb +++ b/website/www/helpers/download_helpers.rb @@ -18,7 +18,7 @@ if ENV["VAGRANT_VERSION"] puts "Finding downloads for Vagrant" raise "BINTRAY_API_KEY must be set." if !ENV["BINTRAY_API_KEY"] http = Net::HTTP.new("dl.bintray.com", 80) - req = Net::HTTP::Get.new("/mitchellh/vagrant") + req = Net::HTTP::Get.new("/mitchellh/vagrant/") req.basic_auth "mitchellh", ENV["BINTRAY_API_KEY"] response = http.request(req)