Use tag as package version if built off of a tag
parent
6de46a16e6
commit
bc4e06424e
|
@ -41,6 +41,11 @@ class Compiler
|
||||||
}
|
}
|
||||||
$this->version = trim($process->getOutput());
|
$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 = new \Phar($pharFile, 0, 'composer.phar');
|
||||||
$phar->setSignatureAlgorithm(\Phar::SHA1);
|
$phar->setSignatureAlgorithm(\Phar::SHA1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue