PATH on windows
Closed this issue · 3 comments
veewee commented
In the Repository constructer there is following default option:
'environment_variables' => $is_windows ? array( 'PATH' => $_SERVER['PATH'] ) : array(),
This causes a notice on windows:
Notice: Undefined index: PATH in ...../Repository.php on line 123
The path variable can be accessed as following:
getenv('PATH') ?: getenv('Path')
alexandresalome commented
Fixed by #97