Your IP : 3.138.137.191
Current Path : /bin/ |
|
Current File : //bin/moose-outdated |
#!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
use strict;
use warnings;
# PODNAME: moose-outdated
use Getopt::Long;
use Moose::Conflicts;
my $verbose;
GetOptions( 'verbose|v' => \$verbose );
if ($verbose) {
Moose::Conflicts->check_conflicts;
}
else {
my @conflicts = Moose::Conflicts->calculate_conflicts;
print "$_\n" for map { $_->{package} } @conflicts;
exit @conflicts;
}