Skip to content

Commit

Permalink
Use multi-worker-win32 branches to install cpm
Browse files Browse the repository at this point in the history
Connects with <#79>.
  • Loading branch information
zmughal committed Aug 5, 2020
1 parent ed46c7b commit 7638fdb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/Oberth/Launch/System/MSYS2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,13 @@ method _install_perl() {
local $ENV{PERL_MM_USE_DEFAULT} = 1;
$self->build_perl->script( qw(cpan App::cpanminus) );
}
$self->build_perl->script( qw(cpanm --notest App::cpm ExtUtils::MakeMaker Module::Build App::pmuninstall) );
$self->build_perl->script( qw(cpanm --notest), $_ ) for (
# App::cpm
'https://github.com/oberth-manoeuvre/cpm.git@multi-worker-win32',
# Parallel::Pipes
'https://github.com/oberth-manoeuvre/Parallel-Pipes.git@multi-worker-win32',
);
$self->build_perl->script( qw(cpanm --notest ExtUtils::MakeMaker Module::Build App::pmuninstall) );
$self->build_perl->script( qw(cpanm --notest Win32::Process IO::Socket::SSL) );
}

Expand Down

0 comments on commit 7638fdb

Please sign in to comment.