We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250283c commit a6a11fcCopy full SHA for a6a11fc
tools/build/gen-moar-runner.pl
@@ -9,15 +9,15 @@
9
my ($moar) = @ARGV;
10
11
if ($^O eq 'MSWin32') {
12
- my $install_to = 'nqp.bat';
+ my $install_to = 'nqp-m.bat';
13
open my $fh, ">", $install_to
14
or die "Could not open $install_to: $!";
15
print $fh '@ "' . $moar . '" nqp.moarvm %*' . "\n";
16
close $fh
17
or die "Could not close $install_to: $!";
18
}
19
else {
20
- my $install_to = 'nqp';
+ my $install_to = 'nqp-m';
21
22
23
print $fh "#!/bin/sh\n";
0 commit comments