aboutsummaryrefslogtreecommitdiff
path: root/tools/build/module-install.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/module-install.pl')
-rw-r--r--tools/build/module-install.pl12
1 files changed, 9 insertions, 3 deletions
diff --git a/tools/build/module-install.pl b/tools/build/module-install.pl
index af6845f..eadb99e 100644
--- a/tools/build/module-install.pl
+++ b/tools/build/module-install.pl
@@ -17,9 +17,15 @@ while (<>) {
# Create the command list
my @cmd = (
- $perl6bin, $zefbin,
- '--/build-depends', '--/test-depends', '--/depends',
- '--force', 'install', "./modules$path_sep$module"
+ $perl6bin,
+ $zefbin,
+ '--/build-depends',
+ '--/depends',
+ '--/test',
+ '--/test-depends',
+ '--force',
+ 'install',
+ "./modules$path_sep$module"
);
# Show the command that's going to be ran, for debugging purposes