#!/usr/bin/perl
use strict;
use FindBin;
use lib File::Spec->catdir($FindBin::Bin, 'lib');
use Plagger;
my $config = File::Spec->catfile($FindBin::Bin, 'config.yaml');
GetOptions('--config=s', \$config, '--version' => \my $version);
Getopt::Long::Configure("bundling"); # allows -c -v
if ($version) {
print "Plagger version $Plagger::VERSION\n";
exit;
}
Plagger->bootstrap(config => $config);