From 190238ab960ce9c176e59eae2c814394bd34aed4 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Mon, 8 Jun 2020 23:42:37 +0200 Subject: [PATCH] No reason to hide "git describe" output --- RoboFile.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RoboFile.php b/RoboFile.php index f4980cf..6481aa6 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -17,10 +17,9 @@ class RoboFile extends Tasks { $result = $this->taskExec('git') ->args('describe') - ->printOutput(false) ->run(); $result->provideOutputdata(); - $tag = $result->getOutputData(); + $tag = trim($result->getOutputData()); // We don't want the whole vendor directory. $finder = new Finder();