aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'local/post-receive')
-rwxr-xr-xlocal/post-receive2
1 files changed, 1 insertions, 1 deletions
diff --git a/local/post-receive b/local/post-receive
index c6fc859..b5a1511 100755
--- a/local/post-receive
+++ b/local/post-receive
@@ -13,6 +13,6 @@ stdin=$(cat)
for hook in ${HOOKS[@]}; do
if [[ -x ${hook} ]]; then
- echo "${stdin}" | ./${hook}
+ echo "${stdin}" | ./"${hook}"
fi
done