We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d77df1b commit 0ce135eCopy full SHA for 0ce135e
src/Install/CodeEnvironment/ClaudeCode.php
@@ -25,7 +25,7 @@ public function systemDetectionConfig(Platform $platform): array
25
{
26
return match ($platform) {
27
Platform::Darwin, Platform::Linux => [
28
- 'command' => 'which claude',
+ 'command' => 'command -v claude',
29
],
30
Platform::Windows => [
31
'command' => 'where claude 2>null',
src/Install/CodeEnvironment/VSCode.php
@@ -26,7 +26,7 @@ public function systemDetectionConfig(Platform $platform): array
'paths' => ['/Applications/Visual Studio Code.app'],
Platform::Linux => [
- 'command' => 'which code',
+ 'command' => 'command -v code',
32
'paths' => [
0 commit comments