1
0
Fork 0

Fix #3521 version mismatch when running diag, Replaced git command to get current checked out tag

pull/3527/head
Thijs Lensselink 2014-12-09 21:41:31 +01:00
parent 5133c3fe9a
commit 6ccc804094
1 changed files with 5 additions and 2 deletions

View File

@ -55,9 +55,12 @@ class Compiler
$date->setTimezone(new \DateTimeZone('UTC')); $date->setTimezone(new \DateTimeZone('UTC'));
$this->versionDate = $date->format('Y-m-d H:i:s'); $this->versionDate = $date->format('Y-m-d H:i:s');
$process = new Process('git describe --tags HEAD'); $process = new Process('git name-rev --tags --name-only $(git rev-parse HEAD)');
if ($process->run() == 0) { if ($process->run() == 0) {
$this->version = trim($process->getOutput()); $output = trim($process->getOutput());
if ($output != 'undefined') {
$this->version = $output;
}
} else { } else {
// get branch-alias defined in composer.json for dev-master (if any) // get branch-alias defined in composer.json for dev-master (if any)
$localConfig = __DIR__.'/../../composer.json'; $localConfig = __DIR__.'/../../composer.json';