Skip to content

Commit 87bd1ab

Browse files
committed
fix: correct method call for discovering project agents in InstallCommand
1 parent 6e4c45d commit 87bd1ab

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
@@ -119,7 +119,7 @@ private function discoverEnvironment(): void
119119
{
120120
$this->systemInstalledCodeEnvironments = $this->codeEnvironmentsDetector->discoverSystemInstalledCodeEnvironments();
121121
$this->projectInstalledCodeEnvironments = $this->codeEnvironmentsDetector->discoverProjectInstalledCodeEnvironments(base_path());
122-
$this->projectInstalledAgents = $this->codeEnvironmentsDetector->discoverProjectInstalledCodeEnvironments(base_path());
122+
$this->projectInstalledAgents = $this->discoverProjectAgents();
123123
}
124124

125125
private function query()

0 commit comments

Comments
 (0)