summaryrefslogtreecommitdiff
path: root/hooks/pre-commit
blob: 661c78e8bf28343868bbb5c6811de465efed58ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

failed=0
for filename in hooks/pre-commit.*; do
  if [ -f "$filename" ]; then
    if ! $filename; then
      failed=1
    fi
  fi
done

exit $failed