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 die "$0: found .git dir, but git is not available\n"
15 if not grep { -x } map { "$_/git" } split /:/, $ENV{PATH};
16 system('git pull >/dev/null') == 0 or die $? >> 8;
19 # the process building the documentation seems to break
20 # if PERL_UNICODE is set.
21 delete $ENV{PERL_UNICODE};
23 exec './run_branches', @ARGV;
25 # vim:ts=8 et sw=4 ai si: