updater: add gunzip checking
This commit is contained in:
parent
23be0bd3fb
commit
0448690482
1 changed files with 11 additions and 0 deletions
|
@ -67,6 +67,17 @@ class Updater extends Plugin {
|
|||
$stop = true; break;
|
||||
}
|
||||
|
||||
array_push($log, "Checking for gunzip...");
|
||||
|
||||
$system_rc = 0;
|
||||
system("gunzip --version >/dev/null", $system_rc);
|
||||
|
||||
if ($system_rc != 0) {
|
||||
array_push($log, "Could not run gunzip executable (RC=$system_rc).");
|
||||
$stop = true; break;
|
||||
}
|
||||
|
||||
|
||||
array_push($log, "Checking for latest version...");
|
||||
|
||||
$version_info = json_decode(fetch_file_contents("http://tt-rss.org/version.php"),
|
||||
|
|
Loading…
Reference in a new issue