mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 03:29:00 +08:00
Merge pull request #371 from shlomif/master
Add an env var to prevent the Build.PL from installing dependencies.
This commit is contained in:
commit
3344a67905
8
Build.PL
8
Build.PL
@ -27,7 +27,11 @@ my $build = Module::Build->new(
|
||||
},
|
||||
script_files => ['slic3r.pl'],
|
||||
);
|
||||
$build->dispatch('installdeps');
|
||||
$build->dispatch('test', verbose => 0);
|
||||
|
||||
if (not $ENV{SLIC3R_NO_AUTO})
|
||||
{
|
||||
$build->dispatch('installdeps');
|
||||
$build->dispatch('test', verbose => 0);
|
||||
}
|
||||
|
||||
$build->create_build_script;
|
||||
|
Loading…
x
Reference in New Issue
Block a user