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.
remotes/origin/fix-10825
Joas Schilling 10 years ago
parent 284ba5b688
commit e32968cfce
  1. 2
      settings/admin.php

@ -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]);

Loading…
Cancel
Save