10 lines
131 B
Bash
Executable file
10 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ -z $(command -v uv) ]]; then
|
|
echo "Requires uv."
|
|
exit 1
|
|
fi
|
|
|
|
uv pip install .
|
|
|
|
uv run pre-commit install
|