From 83678f83c8d36f111743e164d58ac51d02bd0ff1 Mon Sep 17 00:00:00 2001 From: wolle604 <97309597+wolle604@users.noreply.github.com> Date: Fri, 19 Dec 2025 21:44:35 +0000 Subject: [PATCH] fix: removed verbose option to avoid unnecessary output (#10144) --- tools/pve/execute.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pve/execute.sh b/tools/pve/execute.sh index 3b34f97e5..68ab8d78c 100644 --- a/tools/pve/execute.sh +++ b/tools/pve/execute.sh @@ -50,7 +50,7 @@ function execute_in() { container=$1 name=$(pct exec "$container" hostname) echo -e "${BL}[Info]${GN} Execute inside${BL} ${name}${GN} with output: ${CL}" - if ! pct exec "$container" -- bash -c "command -v ${custom_command} >/dev/null 2>&1" + if ! pct exec "$container" -- bash -c "command ${custom_command} >/dev/null 2>&1" then echo -e "${BL}[Info]${GN} Skipping ${name} ${RD}$container has no command: ${custom_command}" else