Skip to content

Instantly share code, notes, and snippets.

@ssig33
Created February 27, 2010 13:15
Show Gist options
  • Save ssig33/316679 to your computer and use it in GitHub Desktop.
Save ssig33/316679 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require "net/http"
system "rm chrome-mac.zip"
Net::HTTP.version_1_2
Net::HTTP.start('build.chromium.org', 80) do |http|
@response = http.get('/buildbot/snapshots/chromium-rel-mac/LATEST').body
end
system "wget http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/#{@response}/chrome-mac.zip"
system "unzip chrome-mac.zip"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment