No reason to hide "git describe" output
This commit is contained in:
parent
e777f51490
commit
190238ab96
1 changed files with 1 additions and 2 deletions
|
@ -17,10 +17,9 @@ class RoboFile extends Tasks
|
||||||
{
|
{
|
||||||
$result = $this->taskExec('git')
|
$result = $this->taskExec('git')
|
||||||
->args('describe')
|
->args('describe')
|
||||||
->printOutput(false)
|
|
||||||
->run();
|
->run();
|
||||||
$result->provideOutputdata();
|
$result->provideOutputdata();
|
||||||
$tag = $result->getOutputData();
|
$tag = trim($result->getOutputData());
|
||||||
|
|
||||||
// We don't want the whole vendor directory.
|
// We don't want the whole vendor directory.
|
||||||
$finder = new Finder();
|
$finder = new Finder();
|
||||||
|
|
Loading…
Reference in a new issue