We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba03b8 commit d525ff9Copy full SHA for d525ff9
CHANGELOG.md
@@ -22,10 +22,10 @@
22
23
* Features:
24
* Improved startup error message
25
+* Bug fixes:
26
* Fixed bugs on shutdown
27
* Fixed unit tests
-* Bug fixes:
28
- * none
+ * Allow CHROME_PATH to have spaces in the path
29
30
--------------
31
src/BrowserFactory.php
@@ -21,7 +21,7 @@ public function __construct(string $chromeBinaries = null)
21
$envChromePath = getenv('CHROME_PATH');
if ($envChromePath) {
- $chromeBinaries = $envChromePath;
+ $chromeBinaries = '"' . $envChromePath . '"';
} else {
$chromeBinaries = 'chrome';
}
0 commit comments