Skip to content
Snippets Groups Projects
Commit 7843453c authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

version: do not hardcode master branch

parent b6b5554d
No related branches found
No related tags found
No related merge requests found
...@@ -5,18 +5,37 @@ ...@@ -5,18 +5,37 @@
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();
define("GIT_VERSION_HEAD", $suffix); if (preg_match("/^ref: (.*)/", $head, $matches)) {
define("GIT_VERSION_TIMESTAMP", $timestamp); $ref = $matches[1];
return VERSION_STATIC . " ($suffix)"; $suffix = substr(trim(file_get_contents("$root_dir/.git/$ref")), 0, 7);
} else { $timestamp = filemtime("$root_dir/.git/$ref");
return VERSION_STATIC;
define("GIT_VERSION_HEAD", $suffix);
define("GIT_VERSION_TIMESTAMP", $timestamp);
return VERSION_STATIC . " ($suffix)";
} else {
$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());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment