mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
12 lines
366 B
Bash
12 lines
366 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if ! type -p pre-commit &>/dev/null; then
|
||
|
echo "format.sh: pre-commit not found. Please use \`nix develop\`.";
|
||
|
exit 1;
|
||
|
fi;
|
||
|
if test -z "$_NIX_PRE_COMMIT_HOOKS_CONFIG"; then
|
||
|
echo "format.sh: _NIX_PRE_COMMIT_HOOKS_CONFIG not set. Please use \`nix develop\`.";
|
||
|
exit 1;
|
||
|
fi;
|
||
|
pre-commit run --config "$_NIX_PRE_COMMIT_HOOKS_CONFIG" --all-files
|