2008-11-04 Cameron Zwarich <zwarich@apple.com>
[webkit/qt.git] / PlanetWebKit / update.pl
blobe0724acd5d675243a94aec5ee4794de4b8b60fcc
1 #!/usr/bin/perl -w
3 use strict;
4 use FindBin;
5 use Getopt::Long;
7 my $python;
8 GetOptions("python=s" => \$python);
10 my @command = qw(./planet/planet.py config.ini);
11 unshift @command, $python if defined($python);
13 chdir $FindBin::Bin;
14 exec @command;