Skip to content

Commit ca334a8

Browse files
authored
Merge pull request #37 from articstudio/develop
Fix Version command
2 parents d8b0e94 + 272e9a5 commit ca334a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Git/Subtree/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6060
if ($option === 'all') {
6161
$package_names = array_keys($repositories);
6262
} elseif (is_int($option)) {
63-
$package_names = i[array_keys($repositories)[$option]];
63+
$package_names = [array_keys($repositories)[$option]];
6464
} elseif (substr($option, 0, 6) === 'group:') {
6565
$group_name = substr($option, 6);
6666
$package_names = $versions_groups[$group_name] ?? [];

0 commit comments

Comments
 (0)