From c1459a128906df035da84b7d92fd6be0a891fa60 Mon Sep 17 00:00:00 2001 From: Matthew Grasmick Date: Thu, 29 Jun 2017 14:45:08 -0400 Subject: [PATCH] Fixing bug in setting of deploy tag. --- src/Robo/Commands/Deploy/DeployCommand.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Robo/Commands/Deploy/DeployCommand.php b/src/Robo/Commands/Deploy/DeployCommand.php index 41d7deaaf..0ac167af0 100644 --- a/src/Robo/Commands/Deploy/DeployCommand.php +++ b/src/Robo/Commands/Deploy/DeployCommand.php @@ -154,8 +154,7 @@ protected function getTagName($options) { throw new BltException("You must enter a valid tag name."); } else { - $tag_name = $options['tag']; - $this->say("Tag is set to {$options['tag']}."); + $this->say("Tag is set to $tag_name."); } return $tag_name;