Mineplex/.FILES USED TO GET TO WHERE WE ARE PRESENTLY/xampp/perl/bin/moose-outdated
Daniel Waggner 76a7ae65df PUUUUUSH
2023-05-17 14:44:01 -07:00

23 lines
427 B
Perl

#!perl
use strict;
use warnings;
# PODNAME: moose-outdated
# this script was generated with Dist::Zilla::Plugin::Conflicts 0.19
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;
}