Skip to content

Instantly share code, notes, and snippets.

@ukd1
Created November 17, 2011 14:14
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 ukd1/1373225 to your computer and use it in GitHub Desktop.
Save ukd1/1373225 to your computer and use it in GitHub Desktop.
Keep up to date with the latest Chromium builds on your mac
#!/bin/sh
rm -f chrome-mac.zip chrome-mac
export CHROME_VERSION=`curl http://commondatastorage.googleapis.com/chromium-browser-continuous/Mac/LAST_CHANGE`
wget http://commondatastorage.googleapis.com/chromium-browser-continuous/Mac/$CHROME_VERSION/chrome-mac.zip
unzip chrome-mac.zip
rm -rf /Applications/Chromium.app
mv chrome-mac/Chromium.app /Applications/Chromium.app
rm -rf chrome-mac chrome-mac.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment