I imagine the Chromium team will implement Sparkle-powered updates
soon, but for now here's a script you can use:

If you're handy with the Terminal, paste the following into a file,
name it with a *.sh extension, chmod +x it. If you alias the command,
you essentially have a one-click nightly build upgrade.

#!/bin/bash

cd /tmp

latest_url=`python -c "
import urllib2

req = urllib2.Request('http://build.chromium.org/buildbot/snapshots/
chromium-rel-mac/LATEST')
response = urllib2.urlopen(req)
print 'http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/
%s/chrome-mac.zip' % response.read()
"`

curl $latest_url > chrome-mac.zip

if [ -e chrome-mac.zip ]; then
        echo "Downloaded: $latest_url"
        unzip chrome-mac.zip
        test -e /Applications/Chromium.app && rm -rf /Applications/
Chromium.app
        mv chrome-mac/Chromium.app/ /Applications/
        rm -rf chrome-mac
        rm chrome-mac.zip
        open /Applications/Chromium.app/
else
        echo "Nothing downloaded."
fi

Hope that helps with your update twitch. =)

- Anthony

On Jul 9, 2:34 pm, b_Love <[email protected]> wrote:
> I'm curious if I can rely on the Mac version of Chrome to auto update
> itself?  I'm currently on version 3.0.192.0.  I realize it's still in
> the dev channel, but is it updating as new releases come out?  I ask
> because I noticed some items in the latest update page that I don't
> see in Chrome (managing bookmarks was one of the them).  Perhaps that
> component hasn't been released yet, but I would surely like it.  Maybe
> I'm rushing it a bit, but it's tough for me to wait for the Mac
> version.  I use and love the Windows version at work, and am quite
> excited about using the Mac version at home.
>
> Any help is appreciated.
>
> I did do some searches for this question, but found nothing.

--~--~---------~--~----~------------~-------~--~----~
Chromium Discussion mailing list: [email protected] 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to