From 7bfe55fff64badc0687f82a99fe26d2023a2cdfa Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 11 Mar 2023 14:37:28 +0100 Subject: [PATCH] "git describe" needs to be non-interactive so we can get its output --- classes/Robo/Plugin/Commands/ReleaseCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/Robo/Plugin/Commands/ReleaseCommand.php b/classes/Robo/Plugin/Commands/ReleaseCommand.php index c355718..837ac78 100644 --- a/classes/Robo/Plugin/Commands/ReleaseCommand.php +++ b/classes/Robo/Plugin/Commands/ReleaseCommand.php @@ -26,6 +26,7 @@ class ReleaseCommand extends Tasks $gitTask = $this->taskExec('git'); $result = $gitTask ->arg('describe') + ->interactive(false) ->run(); $tmpDir = $this->_tmpDir();