mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/fish: programs.fish.generateCompletions fix spaces in filenames (#538723)
This commit is contained in:
commit
9fc0d99003
1 changed files with 2 additions and 2 deletions
|
|
@ -293,8 +293,8 @@ in
|
||||||
''
|
''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
if [ -d $package/share/man ]; then
|
if [ -d $package/share/man ]; then
|
||||||
find -L $package/share/man -type f \
|
find -L $package/share/man -type f -print0 \
|
||||||
| xargs ${pkgs.python3.pythonOnBuildForHost.interpreter} \
|
| xargs -0 ${pkgs.python3.pythonOnBuildForHost.interpreter} \
|
||||||
${generator}/create_manpage_completions.py --directory $out \
|
${generator}/create_manpage_completions.py --directory $out \
|
||||||
>/dev/null
|
>/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue