From 25972dbb352a65f6ccffffff61e5c48388a16c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Wed, 12 Nov 2025 18:04:10 +0100 Subject: [PATCH] fix: makefile command to do not install uv if already present on system --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f1f7874ea4..0b4816bca7 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ help: ## Display this help message ##@ Setup install-uv: ## Ensure uv is installed - @if ! command -v uv &> /dev/null; then \ + @if ! command -v uv 2> /dev/null; then \ echo "uv not found. Installing..."; \ curl -LsSf https://astral.sh/uv/install.sh | sh; \ else \