Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion components/ILIAS/Setup/src/CLI/MigrateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ protected function listMigrations(InputInterface $input, IOWrapper $io): void
$status = $steps === 0 ? "[<fg=green>done</>]" : "[<fg=yellow>remaining steps: $steps</>]";
$io->text($migration_key . ": " . $migration->getLabel() . " " . $status);
}
$io->inform('Run them by passing --run <migration_id>, e.g. --run ' . $migration_key);
$io->inform('Run them by passing --run "<migration_id>", e.g. --run ' . $migration_key);
$io->inform('Don\'t forget quotation marks if the migration_id includes a "\\"');
}

protected function prepareEnvironmentForMigration(
Expand Down