Created
November 13, 2009 21:03
Revisions
-
marcus created this gist
Nov 13, 2009 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ 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