Skip to content

Commit 573a2a8

Browse files
committed
fix uv check
1 parent 12fe723 commit 573a2a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ setup-python:
3535
# Setup python, git hooks, and dependencies
3636
[group('setup')]
3737
setup:
38-
# Check if uv is installed, install if not
3938
@which uv >/dev/null 2>&1 || { \
40-
error("uv not found. Please visit https://docs.astral.sh/uv/getting-started/installation/ to install uv")
39+
@echo "uv not found. Please visit https://docs.astral.sh/uv/getting-started/installation/ to install uv" \
40+
exit 1; \
4141
}
4242
@just setup-python
4343
@just install

0 commit comments

Comments
 (0)