* update.pl: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28277
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-11-30 Adam Roben <aroben@apple.com>
+
+ Add a simple script to update the site
+
+ * update.pl: Added.
+
2007-11-30 Adam Roben <aroben@apple.com>
Include all WebKit posts from Trolltech Labs
--- /dev/null
+#!/usr/bin/perl -w
+
+use strict;
+use FindBin;
+use Getopt::Long;
+
+my $python;
+GetOptions("python=s" => \$python);
+
+my @command = qw(./planet/planet.py config.ini);
+unshift @command, $python if defined($python);
+
+chdir $FindBin::Bin;
+exec @command;