"git describe" needs to be non-interactive so we can get its output

This commit is contained in:
Pierre Rudloff 2023-03-11 14:37:28 +01:00
parent 9d8bff3c42
commit 7bfe55fff6
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ class ReleaseCommand extends Tasks
$gitTask = $this->taskExec('git');
$result = $gitTask
->arg('describe')
->interactive(false)
->run();
$tmpDir = $this->_tmpDir();