From f4ca5eb17954a82dc164375accfee76e2c3e70c2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 10 Sep 2014 20:52:44 -0700 Subject: [PATCH] website: remove packer_ prefix from files for now --- website/config.rb | 4 ++-- website/source/downloads.html.erb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/config.rb b/website/config.rb index 5d77fc11e..e51b909a3 100644 --- a/website/config.rb +++ b/website/config.rb @@ -17,7 +17,7 @@ if !ENV["PACKER_DISABLE_DOWNLOAD_FETCH"] response = http.request(req) response.body.split("\n").each do |line| - next if line !~ /\/mitchellh\/packer\/packer_(#{Regexp.quote(ENV["PACKER_VERSION"])}.+?)'/ + next if line !~ /\/mitchellh\/packer\/(#{Regexp.quote(ENV["PACKER_VERSION"])}.+?)'/ filename = $1.to_s os = filename.split("_")[1] next if os == "SHA256SUMS" @@ -84,7 +84,7 @@ helpers do end def download_url(file) - "https://dl.bintray.com/mitchellh/packer/packer_#{file}" + "https://dl.bintray.com/mitchellh/packer/#{file}" end def latest_version diff --git a/website/source/downloads.html.erb b/website/source/downloads.html.erb index 36f18d710..38465d300 100644 --- a/website/source/downloads.html.erb +++ b/website/source/downloads.html.erb @@ -17,7 +17,7 @@ page_title: "Downloads" Below are all available downloads for the latest version of Packer (<%= latest_version %>). Please download the proper package for your operating system and architecture. You can find SHA256 checksums - for packages here. + for packages here.