mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Ignore references to builtin on the mac
On my system (OS-X 10.11) references to builtin are denoted by: ".so man1/builtin.1". So you also need to check against that.
This commit is contained in:
parent
e7d18b96f9
commit
8d97a85834
1 changed files with 1 additions and 1 deletions
|
@ -759,7 +759,7 @@ def parse_manpage_at_path(manpage_path, output_directory):
|
||||||
return
|
return
|
||||||
|
|
||||||
# Ignore the millions of links to BUILTIN(1)
|
# Ignore the millions of links to BUILTIN(1)
|
||||||
if manpage.find('BUILTIN 1') != -1:
|
if 'BUILTIN 1' in manpage or 'builtin.1' in manpage:
|
||||||
return
|
return
|
||||||
|
|
||||||
# Clear the output list
|
# Clear the output list
|
||||||
|
|
Loading…
Reference in a new issue