Skip to content

Instantly share code, notes, and snippets.

@dirk
Created April 4, 2013 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dirk/5314872 to your computer and use it in GitHub Desktop.
Save dirk/5314872 to your computer and use it in GitHub Desktop.
Download the latest Mac build of Chromium from their CI repo
#!/usr/bin/env ruby
version = `wget -O - -q http://commondatastorage.googleapis.com/chromium-browser-continuous/Mac/LAST_CHANGE`.strip
puts "Downloading Chromium continuous build version: #{version}"
STDOUT.flush
`wget -O "chromium-mac-continuous-#{version}.zip" http://commondatastorage.googleapis.com/chromium-browser-continuous/Mac/#{version}/chrome-mac.zip`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment