From 4eecca8aeab1714cacce050174007a01cc023478 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 26 Mar 2026 09:54:17 +0100 Subject: [PATCH] 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. --- misc/tools.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index 56b18d8a6..2427bddf4 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -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 }