1
0
Fork 0

Merge pull request #384 from simensen/TagForPackageVersion

Use tag as package version if built off of a tag
pull/249/merge
Jordi Boggiano 2012-03-05 04:27:34 -08:00
commit 5f40acef48
1 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,11 @@ class Compiler
}
$this->version = trim($process->getOutput());
$process = new Process('git describe --tags HEAD');
if ($process->run() == 0) {
$this->version = trim($process->getOutput());
}
$phar = new \Phar($pharFile, 0, 'composer.phar');
$phar->setSignatureAlgorithm(\Phar::SHA1);