Commit 7078c2f9 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Fix some scripts

parent 3006be43
...@@ -23,7 +23,7 @@ fi ...@@ -23,7 +23,7 @@ fi
# Determine the arch/os combos we're building for # Determine the arch/os combos we're building for
XC_ARCH=${XC_ARCH:-"386 amd64 arm"} XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd} XC_OS=${XC_OS:-linux darwin windows}
# Install dependencies # Install dependencies
echo "==> Getting dependencies..." echo "==> Getting dependencies..."
......
...@@ -17,7 +17,7 @@ if !ENV["PACKER_DISABLE_DOWNLOAD_FETCH"] ...@@ -17,7 +17,7 @@ if !ENV["PACKER_DISABLE_DOWNLOAD_FETCH"]
response = http.request(req) response = http.request(req)
response.body.split("\n").each do |line| response.body.split("\n").each do |line|
next if line !~ /\/mitchellh\/packer\/(#{Regexp.quote(ENV["PACKER_VERSION"])}.+?)'/ next if line !~ /\/mitchellh\/packer\/packer_(#{Regexp.quote(ENV["PACKER_VERSION"])}.+?)'/
filename = $1.to_s filename = $1.to_s
os = filename.split("_")[1] os = filename.split("_")[1]
next if os == "SHA256SUMS" next if os == "SHA256SUMS"
...@@ -84,7 +84,7 @@ helpers do ...@@ -84,7 +84,7 @@ helpers do
end end
def download_url(file) def download_url(file)
"https://dl.bintray.com/mitchellh/packer/#{file}" "https://dl.bintray.com/mitchellh/packer/packer_#{file}"
end end
def latest_version def latest_version
......
...@@ -17,7 +17,7 @@ page_title: "Downloads" ...@@ -17,7 +17,7 @@ page_title: "Downloads"
Below are all available downloads for the latest version of Packer Below are all available downloads for the latest version of Packer
(<%= latest_version %>). Please download the proper package for your (<%= latest_version %>). Please download the proper package for your
operating system and architecture. You can find SHA256 checksums operating system and architecture. You can find SHA256 checksums
for packages <a href="https://dl.bintray.com/mitchellh/packer/<%= latest_version %>_SHA256SUMS?direct">here</a>. for packages <a href="https://dl.bintray.com/mitchellh/packer/packer_<%= latest_version %>_SHA256SUMS?direct">here</a>.
</p> </p>
</div> </div>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment