8 lines
163 B
Bash
Executable file
8 lines
163 B
Bash
Executable file
#!/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
|