mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:35:55 +00:00
get_version: filter out Darwin
This commit is contained in:
@@ -1899,6 +1899,8 @@
|
|||||||
|
|
||||||
if ('\\' === DIRECTORY_SEPARATOR) {
|
if ('\\' === DIRECTORY_SEPARATOR) {
|
||||||
$ttrss_version = "UNKNOWN (Unsupported, Windows)";
|
$ttrss_version = "UNKNOWN (Unsupported, Windows)";
|
||||||
|
} else if (PHP_OS === "Darwin") {
|
||||||
|
$ttrss_version = "UNKNOWN (Unsupported, Darwin)";
|
||||||
} else if (file_exists("$root_dir/version_static.txt")) {
|
} else if (file_exists("$root_dir/version_static.txt")) {
|
||||||
$ttrss_version = trim(file_get_contents("$root_dir/version_static.txt")) . " (Unsupported)";
|
$ttrss_version = trim(file_get_contents("$root_dir/version_static.txt")) . " (Unsupported)";
|
||||||
} else if (is_dir("$root_dir/.git")) {
|
} else if (is_dir("$root_dir/.git")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user