aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/helper.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php
index 446a6199e2b..320cbb99618 100644
--- a/lib/private/helper.php
+++ b/lib/private/helper.php
@@ -925,9 +925,10 @@ class OC_Helper {
// Returns null if nothing is found
$result = $exeSniffer->find($program);
if (empty($result)) {
- // The order of the folders is important as we'll use the first command we find
- exec('find /usr/local/bin/ /usr/bin/ -name ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode);
- if ($returnCode === 0 && count($output) > 0) {
+ $paths = str_replace(':','/ ',getenv('PATH'));
+ $command = 'find ' . $paths . ' -name ' . escapeshellarg($program) . ' 2> /dev/null';
+ exec($command, $output, $returnCode);
+ if (count($output) > 0) {
$result = escapeshellcmd($output[0]);
}
}