mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-04-18 08:22:16 +00:00
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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user