Fix x86_64 macOS bison finder path

This commit is contained in:
crazywhalecc
2025-07-31 00:09:13 +08:00
parent fcdb029b10
commit cb0ea67a28
2 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ class MacOSToolCheckList
if ($command_path !== []) {
return CheckResult::fail("Current {$bison} version is too old: " . $matches[0]);
}
return $this->checkBisonVersion(['/opt/homebrew/opt/bison/bin', '/usr/local/homebrew/opt/bison/bin']);
return $this->checkBisonVersion(['/opt/homebrew/opt/bison/bin', '/usr/local/opt/bison/bin']);
}
return CheckResult::ok($matches[0]);
}