The WebKit team announced a new site today where you can download nightly builds of the latest WebKit — very cool. I went ahead and wrote the following simple shell script to automate the process of downloading and installing the latest build:
#!/bin/sh
curl -o /tmp/webkit.dmg http://nightly.webkit.org/builds/Latest-WebKit-CVS.dmg
hdiutil mount /tmp/webkit.dmg
if [ -d /Volumes/WebKit/WebKit.app ]; then […]
