[Process][Windows] Don't use cmd for launching process (fixing Sismo git.exe calling)

This commit is contained in:
Pascal Borreli 2011-04-09 17:31:26 +00:00
parent d91a0747ec
commit 46b4098907

View File

@ -60,7 +60,7 @@ class Process
}
$this->stdin = $stdin;
$this->timeout = $timeout;
$this->options = array_merge($options, array('suppress_errors' => true, 'binary_pipes' => true));
$this->options = array_merge($options, array('suppress_errors' => true, 'binary_pipes' => true, 'bypass_shell' => true));
}
/**