Skip to content

Commit 41bb002

Browse files
committed
don't hardcode 'perl6'
1 parent 144a3a9 commit 41bb002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xt/aspell.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ for @files -> $file {
4848
my $fixer;
4949

5050
if $file ~~ / '.pod6' $/ {
51-
my $pod2text = run('perl6', '--doc', $file, :out);
51+
my $pod2text = run($*EXECUTABLE-NAME, '--doc', $file, :out);
5252
$fixer = run('awk', 'BEGIN {print "!"} {print "^" $0}', :in($pod2text.out), :out);
5353
} else {
5454
$fixer = run('awk', 'BEGIN {print "!"} {print "^" $0}', $file, :out);

0 commit comments

Comments
 (0)