Skip to content

Instantly share code, notes, and snippets.

@marcus
Created November 13, 2009 21:03
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 marcus/234155 to your computer and use it in GitHub Desktop.
Save marcus/234155 to your computer and use it in GitHub Desktop.
mkdir -p /tmp/chrome-mac
cd /tmp/chrome-mac
CHROME_VERSION=$(curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/LATEST)
curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/$CHROME_VERSION/chrome-mac.zip > chrome-mac.zip
osascript <<EOF
tell application "Chromium"
quit
end tell
EOF
unzip chrome-mac
cd chrome-mac
rm -rf /Applications/Chromium.app/
mv Chromium.app /Applications
rm -rf /tmp/chrome-mac
open -a Chromium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment