Support multiple extra args with spaces

e.g. `versa test --testdox --filter foo`
This commit is contained in:
Oliver Davies 2024-02-22 19:22:42 +00:00
parent 4ebc156137
commit 8c9f36151b
5 changed files with 9 additions and 8 deletions

View file

@ -30,7 +30,7 @@ final class InstallCommand extends AbstractCommand
language: $this->getProjectLanguage($filesystem, $workingDir, $input),
workingDir: $workingDir,
),
extraArgs: $extraArgs,
extraArgs: explode(separator: ' ', string: $extraArgs),
workingDir: $workingDir,
);