From eb8b10fcc293d15018400ee38d9e99edf88ddd83 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 13 May 2026 16:10:29 -0600 Subject: [PATCH] bootstrap: Make dependency install less verbose Signed-off-by: Zack Cerza --- bootstrap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap b/bootstrap index a92fd7c94..ac39a8730 100755 --- a/bootstrap +++ b/bootstrap @@ -79,11 +79,11 @@ export LANG="${LANG/.*/}.utf-8" export LC_ALL="${LC_ALL/.*/}.utf-8" [ -z "$NO_CLOBBER" ] && rm -rf virtualenv -command -v uv > /dev/null || pipx install uv -command -v uv > /dev/null || pipx ensurepath +command -v uv > /dev/null || pipx install --quiet uv +command -v uv > /dev/null || pipx ensurepath --quiet PATH=$PATH:$HOME/.local/bin # Create the venv if it does not exist, and install teuthology and dependencies -uv sync --frozen --all-extras +uv sync --quiet --frozen --all-extras # To avoid crashing older dispatchers ln -sf .venv virtualenv -- 2.47.3