diff options
author | Brad King <brad.king@kitware.com> | 2014-09-10 16:31:32 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-09-10 16:31:32 -0400 |
commit | 6f2466c503b192c2065bcdc2135137ec5c74ceef (patch) | |
tree | e3b4998c866ec1f2ecd9d79f364168f40ee97169 /hooks-config.bash | |
parent | b9b952190a736e30ef33f2a75cf4aab45bcb3b5a (diff) | |
download | cmake-hooks.tar.gz |
Add a 'pre-push' hookhooks
For now do nothing but chain to a project-specific hook.
Diffstat (limited to 'hooks-config.bash')
-rw-r--r-- | hooks-config.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks-config.bash b/hooks-config.bash index afdbf9dd7d..3cb29afddc 100644 --- a/hooks-config.bash +++ b/hooks-config.bash @@ -59,7 +59,7 @@ hooks_child() { *) prefix="./" ;; esac if test -x "$prefix$child" ; then - "$prefix$child" "$@" + echo "$stdin" | "$prefix$child" "$@" fi } |