fix(fish-deps): detect tools with command -q so wrappers don't mask missing binaries
Status, install, and update resolved catalog entries with `type -q`, which also matches wrapper functions that shadow a tool name (rg, rm, yt-dlp). A shadowed-but-uninstalled tool was reported "installed", skipped by `install`, and skipped by `update`. Switch these catalog-bin probes to `command -q`/`command -s` (PATH only). PM/build-tool probes (cargo, uv, paru, yay, ...) and the fisher check (a fish function) keep `type -q`.
This commit is contained in:
@@ -14,7 +14,9 @@ function _fish_deps_status
|
||||
_fish_deps_catalog
|
||||
|
||||
function __fds_print_dep --argument-names bin tier
|
||||
if type -q $bin
|
||||
# command -q (not type -q): probe PATH only, so wrapper functions that
|
||||
# shadow a tool name (rg, rm, yt-dlp) don't mask a missing binary.
|
||||
if command -q $bin
|
||||
# Special version check: fish < 4.0 is functionally incompatible
|
||||
if test "$bin" = fish
|
||||
set -l _major (fish --version 2>&1 | string match -r 'version (\d+)')[2]
|
||||
@@ -28,7 +30,7 @@ function _fish_deps_status
|
||||
end
|
||||
set_color green; echo -n " ✓ "; set_color normal
|
||||
echo -n "$bin "
|
||||
set_color brblack; echo "(Found at "(type -p $bin)")"; set_color normal
|
||||
set_color brblack; echo "(Found at "(command -s $bin)")"; set_color normal
|
||||
else if test "$tier" = rec
|
||||
set_color yellow; echo -n " ⚠ "; set_color normal
|
||||
echo -n "$bin "
|
||||
|
||||
Reference in New Issue
Block a user