Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/usr/bin/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; }