Skip to content

Instantly share code, notes, and snippets.

@og-shawn-crigger
Created March 30, 2012 16:03
Show Gist options
  • Save og-shawn-crigger/2252491 to your computer and use it in GitHub Desktop.
Save og-shawn-crigger/2252491 to your computer and use it in GitHub Desktop.
Installs or updates Chromium (mac)
#!/bin/bash
mkdir /tmp/chromedownload && cd /tmp/chromedownload
curl http://build.chromium.org/f/chromium/snapshots/chromium-rel-mac/LATEST -o /tmp/chromedownload/LATEST --silent && LATEST=`cat /tmp/chromedownload/LATEST`
curl http://build.chromium.org/f/chromium/snapshots/chromium-rel-mac/$LATEST/chrome-mac.zip -o /tmp/chromedownload/chrome-mac.zip --silent
unzip -qq /tmp/chromedownload/chrome-mac.zip
cp -R /tmp/chromedownload/chrome-mac/Chromium.app /Applications
rm -rf /tmp/chromedownload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment