Skip to content

Commit ad05bbf

Browse files
committed
fix: used wrong argument name
1 parent beaeca8 commit ad05bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/Environment/CreateEnvironmentCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function configure()
4343
*/
4444
protected function perform(InputInterface $input, ConsoleOutput $output)
4545
{
46-
$name = $this->getStringArgument($input, 'name') ?: $output->ask('What is the name of the environment');
46+
$name = $this->getStringArgument($input, 'environment') ?: $output->ask('What is the name of the environment');
4747

4848
$this->apiClient->createEnvironment($this->projectConfiguration->getProjectId(), $name);
4949

0 commit comments

Comments
 (0)