Skip to content

Commit 51cb3d0

Browse files
committed
Fixed windows DIRECTORY_SEPARATOR issue
1 parent ed1ba3c commit 51cb3d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Extension/PhiremockProcess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class PhiremockProcess
4747
*/
4848
public function start($ip, $port, $path, $logsPath, $debug)
4949
{
50-
$phiremockPath = is_file($path) ? $path : "{$path}/phiremock";
50+
$phiremockPath = is_file($path) ? $path : "{$path}".DIRECTORY_SEPARATOR."phiremock";
5151
if ($debug) {
5252
echo 'Running ' . $this->getCommandPrefix()
5353
. "{$phiremockPath} -i {$ip} -p {$port}"

0 commit comments

Comments
 (0)