1 Commits
0.2.0 ... 0.2.1

Author SHA1 Message Date
Aerex
67e34e52b8 refactor(lib): Fixed API change for process symfony 2022-06-19 12:44:50 -05:00

View File

@@ -26,8 +26,7 @@ class Console extends AbstractConsole {
if (isset($input)) {
$input = $this->convertToString($input);
}
$process = new Process(implode(' ', $stdin), null, $envs, $input);
$process->inheritEnvironmentVariables();
$process = new Process($stdin, null, $envs, $input);
try {
$process->mustRun();