blob: 5e5fc26a7ae417bed18b4e2405011c29ab42a105 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/perl
use strict;
use warnings;
die "Must set PGCOMMITFEST_ROOT to root directory of installation!\n"
if !defined $ENV{'PGCOMMITFEST_ROOT'} || ! -d $ENV{'PGCOMMITFEST_ROOT'};
unshift @INC, $ENV{'PGCOMMITFEST_ROOT'} . '/perl-lib';
require PgCommitFest::Handler;
PgCommitFest::Handler::main_loop();
|