mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 09:47:23 +01:00
Make sure PHP is called before calling pest as sub process
This commit is contained in:
committed by
Dimitrios Karvounaris
parent
3d2c83a501
commit
163de28338
@ -3,7 +3,7 @@
|
||||
use Symfony\Component\Process\Process;
|
||||
|
||||
$run = function (string $target) {
|
||||
$process = new Process(['./bin/pest', $target], dirname(__DIR__, 2));
|
||||
$process = new Process(['php', 'bin/pest', $target], dirname(__DIR__, 2));
|
||||
|
||||
$process->run();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user