Skip to content

Commit 25972db

Browse files
committed
fix: makefile command to do not install uv if already present on system
1 parent 60ebe93 commit 25972db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ help: ## Display this help message
5959
##@ Setup
6060

6161
install-uv: ## Ensure uv is installed
62-
@if ! command -v uv &> /dev/null; then \
62+
@if ! command -v uv 2> /dev/null; then \
6363
echo "uv not found. Installing..."; \
6464
curl -LsSf https://astral.sh/uv/install.sh | sh; \
6565
else \

0 commit comments

Comments
 (0)