mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-17 17:41:29 +00:00
version: do not hardcode master branch
This commit is contained in:
@@ -5,19 +5,38 @@
|
|||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
$root_dir = dirname(dirname(__FILE__));
|
$root_dir = dirname(dirname(__FILE__));
|
||||||
|
|
||||||
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/refs/heads/master")) {
|
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/HEAD")) {
|
||||||
|
$head = trim(file_get_contents("$root_dir/.git/HEAD"));
|
||||||
|
|
||||||
$suffix = substr(trim(file_get_contents("$root_dir/.git/refs/heads/master")), 0, 7);
|
if ($head) {
|
||||||
$timestamp = filemtime("$root_dir/.git/refs/heads/master");
|
$matches = array();
|
||||||
|
|
||||||
|
if (preg_match("/^ref: (.*)/", $head, $matches)) {
|
||||||
|
$ref = $matches[1];
|
||||||
|
|
||||||
|
$suffix = substr(trim(file_get_contents("$root_dir/.git/$ref")), 0, 7);
|
||||||
|
$timestamp = filemtime("$root_dir/.git/$ref");
|
||||||
|
|
||||||
define("GIT_VERSION_HEAD", $suffix);
|
define("GIT_VERSION_HEAD", $suffix);
|
||||||
define("GIT_VERSION_TIMESTAMP", $timestamp);
|
define("GIT_VERSION_TIMESTAMP", $timestamp);
|
||||||
|
|
||||||
return VERSION_STATIC . " ($suffix)";
|
return VERSION_STATIC . " ($suffix)";
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return VERSION_STATIC;
|
$suffix = trim($head, 0, 7);
|
||||||
|
$timestamp = filemtime("$root_dir/.git/HEAD");
|
||||||
|
|
||||||
|
define("GIT_VERSION_HEAD", $suffix);
|
||||||
|
define("GIT_VERSION_TIMESTAMP", $timestamp);
|
||||||
|
|
||||||
|
return VERSION_STATIC . " ($suffix)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return VERSION_STATIC;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
define('VERSION', get_version());
|
define('VERSION', get_version());
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user