9 lines
250 B
Plaintext
Executable File
9 lines
250 B
Plaintext
Executable File
# This script ensures that repos can commit personal hooks in the ./precommit-hooks folder.
|
|
|
|
for script in `find precommit-hooks -type f`; do
|
|
if ! bash "$script"; then
|
|
echo "Local script $script failed checks."
|
|
exit 1
|
|
fi
|
|
done
|