mirror of
https://github.com/nix-community/home-manager
synced 2024-12-19 00:09:48 +01:00
fish: follow links to find man pages
Some packages link man pages, e.g. if a package is wrapped with `buildEnv`.
This commit is contained in:
parent
b59f682e86
commit
68aebb45de
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ in {
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
for src in $srcs; do
|
for src in $srcs; do
|
||||||
if [ -d $src/share/man ]; then
|
if [ -d $src/share/man ]; then
|
||||||
find $src/share/man -type f \
|
find -L $src/share/man -type f \
|
||||||
| xargs python ${cfg.package}/share/fish/tools/create_manpage_completions.py --directory $out \
|
| xargs python ${cfg.package}/share/fish/tools/create_manpage_completions.py --directory $out \
|
||||||
> /dev/null
|
> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue