9 lines
163 B
Bash
9 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -z "$(command -v pipx)" ]]; then
|
||
|
echo "ERROR: Pre-commit tooling requires pipx to be available."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
pipx run pre-commit install
|