Skip to content

Commit

Permalink
fish: follow links to find man pages
Browse files Browse the repository at this point in the history
Some packages link man pages, e.g. if a package is wrapped with
`buildEnv`.
  • Loading branch information
neosimsim authored and rycee committed Jun 24, 2023
1 parent b59f682 commit 68aebb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/programs/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ in {
mkdir -p $out
for src in $srcs; do
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 \
> /dev/null
fi
Expand Down

0 comments on commit 68aebb4

Please sign in to comment.