Remove exec() call with invalid name on windows

Currently running unit tests prints the following message 3 times:
The command "command" is misspelt or could not be found.
Instead of trying this, we just skip this now.
This commit is contained in:
Joas Schilling 2014-11-19 17:04:55 +01:00
parent 284ba5b688
commit e32968cfce
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ $template->printPage();
* @return null|string
*/
function findBinaryPath($program) {
if (OC_Helper::is_function_enabled('exec')) {
if (!\OC_Util::runningOnWindows() && \OC_Helper::is_function_enabled('exec')) {
exec('command -v ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode);
if ($returnCode === 0 && count($output) > 0) {
return escapeshellcmd($output[0]);