Skip to content

Commit a33c754

Browse files
authored
Fix WSL command execution by changing 'wsl' to 'wsl.exe' in MCP command builder (#338)
1 parent 25ed9ba commit a33c754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ protected function buildMcpCommand(McpClient $mcpClient): array
510510

511511
return array_filter([
512512
'laravel-boost',
513-
$inWsl ? 'wsl' : false,
513+
$inWsl ? 'wsl.exe' : false,
514514
$mcpClient->getPhpPath($inWsl),
515515
$mcpClient->getArtisanPath($inWsl),
516516
'boost:mcp',

0 commit comments

Comments
 (0)