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 d9b32aa commit ff0c277Copy full SHA for ff0c277
fudgeandrun
@@ -66,7 +66,9 @@ if ($impl_p) {
66
}
67
else {
68
# windows / cross platform needs -e "" with EVAL and \c[DOLLAR SIGN]
69
- $impl = `$p6 -e "EVAL qq/say \\c[DOLLAR SIGN]*PERL.compiler.name, '.', \\c[DOLLAR SIGN]*VM.name/" 2>&1`;
+ ($impl) = `$p6 -e "EVAL qq/say \\c[DOLLAR SIGN]*PERL.compiler.name, '.', \\c[DOLLAR SIGN]*VM.name/" 2>&1`
70
+ =~ /\A([^\n]+)/;
71
+
72
die capture_error($p6, $impl) if $?;
73
chomp($impl);
74
0 commit comments