Skip to content

Commit 1d7e724

Browse files
authored
Fixed edition versions in prompt (#97)
1 parent fc5a0d7 commit 1d7e724

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Command/RunRegressionCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected function interact(InputInterface $input, OutputInterface $output): voi
5959
if (!$input->getArgument('productVersion')) {
6060
$productVersion = $io->ask(
6161
'Please enter the Ibexa DXP version',
62-
'4.5',
62+
'4.6',
6363
static function (string $answer): string {
6464
if (preg_match('/^(\d+)\.(\d+)$/', $answer) === 0) {
6565
throw new \RuntimeException(
@@ -78,7 +78,7 @@ static function (string $answer): string {
7878
}
7979

8080
if (!$input->getArgument('productEditions')) {
81-
$productEditions = $io->ask('Please enter the Ibexa DXP edition(s)', 'oss', static function (string $answer): array {
81+
$productEditions = $io->ask('Please enter the Ibexa DXP edition(s)', 'commerce', static function (string $answer): array {
8282
$editions = explode(',', $answer);
8383
self::validateEditions($editions);
8484

0 commit comments

Comments
 (0)