Created
November 13, 2009 21:03
-
-
Save marcus/234155 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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