[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
perl
/
bin
/
[
Home
]
File: package-stash-conflicts
#!perl use strict; use warnings; # PODNAME: package-stash-conflicts # this script was generated with Dist::Zilla::Plugin::Conflicts 0.19 use Getopt::Long; use Package::Stash::Conflicts; my $verbose; GetOptions( 'verbose|v' => \$verbose ); if ($verbose) { Package::Stash::Conflicts->check_conflicts; } else { my @conflicts = Package::Stash::Conflicts->calculate_conflicts; print "$_\n" for map { $_->{package} } @conflicts; exit @conflicts; }