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