8 chdir $Bin or die "$0: Can't chdir '$Bin': $!\n";
10 # check if we've git available and if we've a cloned
11 # client installation. FIXME: What to do, if we have
14 my ($git) = grep { -x } map { "$_/git" } split /:/, $ENV{PATH};
15 system('git pull >/dev/null') == 0 or die $? >> 8;
18 # the process building the documentation seems to break
19 # if PERL_UNICODE is set.
20 delete $ENV{PERL_UNICODE};
22 exec './run_branches', @ARGV;
24 # vim:ts=8 et sw=4 ai si: