aboutsummaryrefslogtreecommitdiff
path: root/.githooks/pre-commit
diff options
context:
space:
mode:
Diffstat (limited to '.githooks/pre-commit')
-rwxr-xr-x.githooks/pre-commit13
1 files changed, 0 insertions, 13 deletions
diff --git a/.githooks/pre-commit b/.githooks/pre-commit
deleted file mode 100755
index 5ee533a..0000000
--- a/.githooks/pre-commit
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# A hook script to verify what is about to be committed.
-# Called by "git commit" with no arguments.
-
-# Redirect output to stderr.
-exec 1>&2
-
-for f in .githooks/pre-commit.*; do
- n=$(echo "${f}" |sed 's/^.*pre-commit\.//')
- echo "running ${n} pre-commit"
- $(${f})
-done