mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Minor, fix relative path in PhutilLibraryMapBuilder
This commit is contained in:
parent
c5b7afb344
commit
22ad85dad7
1 changed files with 1 additions and 1 deletions
|
@ -366,7 +366,7 @@ final class PhutilLibraryMapBuilder {
|
||||||
*/
|
*/
|
||||||
private function buildSymbolAnalysisFuture($file) {
|
private function buildSymbolAnalysisFuture($file) {
|
||||||
$absolute_file = $this->getPath($file);
|
$absolute_file = $this->getPath($file);
|
||||||
$bin = dirname(__FILE__).'/phutil_symbols.php';
|
$bin = dirname(dirname(__FILE__)).'/phutil_symbols.php';
|
||||||
|
|
||||||
return new ExecFuture('%s --ugly -- %s', $bin, $absolute_file);
|
return new ExecFuture('%s --ugly -- %s', $bin, $absolute_file);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue