Skip to content

Commit a24ebe8

Browse files
committed
Old oops
Things already end up being in @Args, no need to assign explicitly. This was changed long time ago but it is only committed now for some reason.
1 parent 568be3b commit a24ebe8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

build.p6

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,12 @@ sub process-commit($commit) {
129129

130130
my @args = do given PROJECT {
131131
when MoarVM {
132-
@args = perl, --, Configure.pl, --prefix=$build-path,
132+
perl, --, Configure.pl, --prefix=$build-path,
133133
--debug=3
134134
}
135135
when Rakudo-Moar {
136-
@args = perl, --, Configure.pl, --prefix=$build-path,
137-
--gen-moar, --gen-nqp, --backends=moar,
138-
--git-reference={GIT-REFERENCE}
136+
perl, --, Configure.pl, --prefix=$build-path,
137+
--gen-moar, --gen-nqp, --backends=moar
139138
}
140139
}
141140
$config-ok = run :out($configure-log-fh), :err($configure-err-fh), |@args;

0 commit comments

Comments
 (0)