mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
fish_apropos: use realpath instead of readlink
readlink -f is not supported on macOS Big Sur (from 2020).
This commit is contained in:
parent
243a8345ce
commit
c227233571
|
@ -40,7 +40,7 @@ if test $status -eq 0 -a (count $sysver) -eq 3
|
|||
|
||||
if test $age -ge $max_age
|
||||
test -d "$dir" || mkdir -m 700 -p $dir
|
||||
/usr/libexec/makewhatis -o "$whatis" (/usr/bin/manpath | string split : | xargs readlink -f) >/dev/null 2>&1 </dev/null &
|
||||
/usr/libexec/makewhatis -o "$whatis" (/usr/bin/manpath | string split : | xargs realpath) >/dev/null 2>&1 </dev/null &
|
||||
disown $last_pid
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user