Skip to content

Commit 7b4e00c

Browse files
authored
Remove extra Directory Separator from ChromeProcess (#995)
1 parent ec89035 commit 7b4e00c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Chrome/ChromeProcess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function toProcess(array $arguments = [])
4747
'win' => 'chromedriver-win.exe',
4848
];
4949

50-
$driver = __DIR__.'/../../bin/'.DIRECTORY_SEPARATOR.$filenames[$this->operatingSystemId()];
50+
$driver = __DIR__.'/../../bin'.DIRECTORY_SEPARATOR.$filenames[$this->operatingSystemId()];
5151
}
5252

5353
$this->driver = realpath($driver);

0 commit comments

Comments
 (0)