Support multiple extra args with spaces
e.g. `versa test --testdox --filter foo`
This commit is contained in:
parent
4ebc156137
commit
8c9f36151b
5 changed files with 9 additions and 8 deletions
|
@ -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,
|
||||
);
|
||||
|
||||
|
|
Reference in a new issue