We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12fe723 commit 573a2a8Copy full SHA for 573a2a8
1 file changed
justfile
@@ -35,9 +35,9 @@ setup-python:
35
# Setup python, git hooks, and dependencies
36
[group('setup')]
37
setup:
38
- # Check if uv is installed, install if not
39
@which uv >/dev/null 2>&1 || { \
40
- error("uv not found. Please visit https://docs.astral.sh/uv/getting-started/installation/ to install uv")
+ @echo "uv not found. Please visit https://docs.astral.sh/uv/getting-started/installation/ to install uv" \
+ exit 1; \
41
}
42
@just setup-python
43
@just install
0 commit comments