fix(tools.func): use absolute path for install in setup_uv

Using bare 'install' command gets shadowed when scripts define their own install() function, causing setup_uv to hang. Use /usr/bin/install instead.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-26 09:54:17 +01:00
parent d915dee103
commit 4eecca8aea

View File

@@ -7942,7 +7942,7 @@ function setup_uv() {
return 1
fi
$STD install -m 755 "$UV_BINARY" "$UV_BIN" || {
$STD /usr/bin/install -m 755 "$UV_BINARY" "$UV_BIN" || {
msg_error "Failed to install uv binary"
return 1
}