When forking a repo within Allura, the post-receive-user file should not be created. Currently it is created like the following, which is self-recursive and bad.
#!/bin/bash
# The following is required for site integration, do not remove/modify.
# Place user hook code in post-receive-user and it will be called from here.
curl -s http://sourceforge.net/auth/refresh_repo/p/simplemvcv/code/
DIR="$(dirname "${BASH_SOURCE[0]}")"
if [ -x $DIR/post-receive-user ]; then exec $DIR/post-receive-user
fi
allura:cj/5022
forge-classic:cj/5022