Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-02-11 06:07:26 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-02-11 06:07:26 +0400
commitfdc866ab9aac1dccd0ed1e5009537738c5a9ae19 (patch)
tree5013dbe5ccc4aa1d97b0e719f525fb0916fdcea5 /core/CliMulti.php
parentdffb297929d804608bdd1163aa7857247958dd20 (diff)
refs #4610 make sure the command awk exist
Diffstat (limited to 'core/CliMulti.php')
-rw-r--r--core/CliMulti.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/CliMulti.php b/core/CliMulti.php
index 255a3fa56e..9948ce1f7d 100644
--- a/core/CliMulti.php
+++ b/core/CliMulti.php
@@ -135,7 +135,7 @@ class CliMulti {
return $this->supportsAsync;
}
- return !SettingsServer::isWindows();
+ return !SettingsServer::isWindows() && Process::isSupported();
}
private function cleanup()