Sign in
webkit
/
WebKit
/
576a979610e4022489e162a6cf99857a249b2267
/
.
/
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
;