Skip to content

Commit

Permalink
fix: handle -c flag same as --configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
FaSe22 committed Oct 16, 2024
1 parent 67f2178 commit 53c9460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugins/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ final class Configuration implements HandlesArguments, Terminable
*/
public function handleArguments(array $arguments): array
{
if ($this->hasArgument('--configuration', $arguments) || $this->hasCustomConfigurationFile()) {
if ($this->hasArgument('--configuration', $arguments) || $this->hasArgument('-c', $arguments) || $this->hasCustomConfigurationFile()) {
return $arguments;
}

Expand Down

0 comments on commit 53c9460

Please sign in to comment.