From: aroben@apple.com Date: Sat, 1 Dec 2007 06:48:33 +0000 (+0000) Subject: Add a simple script to update the site X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=3d8657ae25e58ff49baf3b561b89ffa5e16070cd Add a simple script to update the site * update.pl: Added. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28277 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/PlanetWebKit/ChangeLog b/PlanetWebKit/ChangeLog index e64f3a899f47..78676fdd0126 100644 --- a/PlanetWebKit/ChangeLog +++ b/PlanetWebKit/ChangeLog @@ -1,3 +1,9 @@ +2007-11-30 Adam Roben + + Add a simple script to update the site + + * update.pl: Added. + 2007-11-30 Adam Roben Include all WebKit posts from Trolltech Labs diff --git a/PlanetWebKit/update.pl b/PlanetWebKit/update.pl new file mode 100755 index 000000000000..e0724acd5d67 --- /dev/null +++ b/PlanetWebKit/update.pl @@ -0,0 +1,14 @@ +#!/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;