Skip to content

Commit c6f315c

Browse files
committed
Update option for ignoring MCP configuration
Signed-off-by: Pushpak Chhajed <[email protected]>
1 parent c1e678c commit c6f315c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Console/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class InstallCommand extends Command
3434
{
3535
use Colors;
3636

37-
protected $signature = 'boost:install {--ignore-guidelines : Skip installing AI guidelines} {--ignore-mcp-config : Skip installing MCP server configuration}';
37+
protected $signature = 'boost:install {--ignore-guidelines : Skip installing AI guidelines} {--ignore-mcp : Skip installing MCP server configuration}';
3838

3939
private CodeEnvironmentsDetector $codeEnvironmentsDetector;
4040

@@ -119,7 +119,7 @@ protected function bootstrap(CodeEnvironmentsDetector $codeEnvironmentsDetector,
119119
protected function validateOptions(): array
120120
{
121121
$guidelines = ! $this->option('ignore-guidelines');
122-
$mcp = ! $this->option('ignore-mcp-config');
122+
$mcp = ! $this->option('ignore-mcp');
123123

124124
if (! $guidelines && ! $mcp) {
125125
$this->error('You cannot ignore both guidelines and MCP config. Please select at least one option to proceed.');

src/Console/UpdateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function handle(): void
1414
{
1515
$this->callSilently(InstallCommand::class, [
1616
'--no-interaction' => true,
17-
'--ignore-mcp-config' => true,
17+
'--ignore-mcp' => true,
1818
]);
1919

2020
$this->components->info('Boost guidelines updated successfully.');

0 commit comments

Comments
 (0)