Skip to content

Commit

Permalink
makefile uv installation location fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkersigirci committed Nov 29, 2024
1 parent aa54b89 commit 6b9e01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ifeq ($(shell test -f .env && echo 1),1)
endif

install-uv: ## Install uv
! command -v uv &> /dev/null && curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="~/.local/bin" sh
! command -v uv &> /dev/null && curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="$$HOME/.local/bin" sh

update-uv: ## Update uv to the latest version
uv self update
Expand Down

0 comments on commit 6b9e01a

Please sign in to comment.