Alien-MSYS2
view release on metacpan or search on metacpan
inc/run/before_build.pl view on Meta::CPAN
use strict;
use warnings;
use File::Path qw( rmtree );
# if the [GatherDir] plugin accidentally
# gathers the msys32 / msys64 folders
chdir('share') || die;
my $dh;
opendir($dh, '.') || die;
foreach my $name (readdir $dh)
{
next unless $name =~ /^msys(64|32)/;
( run in 1.338 second using v1.01-cache-2.11-cpan-de7293f3b23 )