X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=usr%2Flocal%2Fbin%2Fgit-wrapper;h=5a55eb7af92f42ca6c7d68ce0c1db5d6c2fe8056;hb=refs%2Fheads%2Flogin;hp=5481ffbf42f89e29303a64954e3429b0e1efab0f;hpb=5e3f9a6568baf708c5bd88144cd9a59260301683;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/usr/local/bin/git-wrapper b/usr/local/bin/git-wrapper index 5481ffb..5a55eb7 100755 --- a/usr/local/bin/git-wrapper +++ b/usr/local/bin/git-wrapper @@ -10,13 +10,13 @@ BASE_PATH='/data/vcs/git' HOOKS_PATH="$BASE_PATH/hooks" -HOOKS=post-update +HOOKS="post-update post-receive" function init_repos() { mkdir "$1" &> /dev/null || return 1 (cd $1 && git --bare init &> /dev/null) || return 1 for hook in $HOOKS; do - ln -s "$HOOKS_PATH/$hook" "$1/hooks/" || return 1 + ln -s -f "$HOOKS_PATH/$hook" "$1/hooks/" || return 1 done }