Skip to content

Commit

Permalink
MSWin32: use tarql.bat on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zmughal committed Dec 12, 2023
1 parent c49d171 commit e93dddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/alien_tarql.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ use Alien::Tarql;
alien_diag 'Alien::Tarql';
alien_ok 'Alien::Tarql';

run_ok([ 'tarql', '--version' ])
my $tarql = $^O ne 'MSWin32' ? 'tarql' : 'tarql.bat';
run_ok([ $tarql, '--version' ])
->success
->out_like(qr/tarql:\s+VERSION:\s+([0-9\.]+)/);

Expand Down

0 comments on commit e93dddf

Please sign in to comment.