aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-12-05 16:06:11 +0100
committerPatrick Spek <p.spek@tyil.nl>2019-12-05 16:06:11 +0100
commit009aa7e91793ce43e73324dad22bed9917500756 (patch)
tree1ba84e2f0eae481671d8c59ba926e355325e705b
parent5939f06f4dc29cd3c39b625c00dfa8fd5d1374d8 (diff)
Skip testing phase when installing Rakudo Star
-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