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 1/2] 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 \ From 47a1ddaf37c6eae92bea40819823ac7148f62a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Mon, 19 Jan 2026 13:05:11 +0100 Subject: [PATCH 2/2] Apply suggestion from @kevinjqliu Co-authored-by: Kevin Liu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b4816bca7..967ead6416 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 2> /dev/null; then \ + @if ! command -v uv > /dev/null 2>&1; then \ echo "uv not found. Installing..."; \ curl -LsSf https://astral.sh/uv/install.sh | sh; \ else \