summaryrefslogtreecommitdiff
path: root/hooks-chain.bash
diff options
context:
space:
mode:
Diffstat (limited to 'hooks-chain.bash')
-rw-r--r--hooks-chain.bash33
1 files changed, 0 insertions, 33 deletions
diff --git a/hooks-chain.bash b/hooks-chain.bash
deleted file mode 100644
index 7aca6ce952..0000000000
--- a/hooks-chain.bash
+++ /dev/null
@@ -1,33 +0,0 @@
-#=============================================================================
-# Copyright 2010-2011 Kitware, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#=============================================================================
-
-hooks_chain() {
- hook="$1" ; shift
- chain=$(git config --get hooks.chain-$hook) ||
- eval chain="\${hooks_chain_${hook//-/_}}"
- test -n "$chain" || return 0
- case "$chain" in
- '/'*) prefix="" ;;
- '[A-Za-z]:/'*) prefix="" ;;
- '.'*) prefix="" ;;
- *) prefix="./" ;;
- esac
- if test -x "$prefix$chain" ; then
- exec "$prefix$chain" "$@"
- fi
-}
-
-# vim: set filetype=sh tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab :