Sign in
webkit
/
WebKit
/
ff4cb3c2323f3937e96e08f4f6fbe6c7755f9da5
/
.
/
Websites
/
planet.webkit.org
/
update.pl
blob: e0724acd5d675243a94aec5ee4794de4b8b60fcc [
file
] [
log
] [
blame
]
#!/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
;