Dunno if this is the right place to put this but I thought it may be useful to someone.
This script (save as .sh file and make it executable via 'chmod +x script.sh' command) downloads the latest chrome file, installs it (ignore the errors) and then deletes the install copy. It works for me, if you have extra time you can probably convert it to an automator action or something of the like.
tested on 10.6.1 snow leopard
This script (save as .sh file and make it executable via 'chmod +x script.sh' command) downloads the latest chrome file, installs it (ignore the errors) and then deletes the install copy. It works for me, if you have extra time you can probably convert it to an automator action or something of the like.
tested on 10.6.1 snow leopard
Code:
#!/bin/bash
mkdir ~/Desktop/chromedownload
cd ~/Desktop/chromedownload
curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/LATEST -o ~/Desktop/chromedownload/LATEST --silent
LATEST=`cat ~/Desktop/chromedownload/LATEST`
curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/$LATEST/chrome-mac.zip -o ~/Desktop/chromedownload/chrome-mac.zip --silent
unzip -qq ~/Desktop/chromedownload/chrome-mac.zip
cp -R ~/Desktop/chromedownload/chrome-mac/Chromium.app /Applications
rm -rf ~/Desktop/chromedownload