f345eed383cd86a2b0d59cb84617ece1306d353c
[git-central.git] / server / post-receive
1 #!/bin/sh
2 #
3 # Delegates to post-receive-email and post-receive-trac
4 #
5
6 input=""
7 while read line ; do
8     input="$input$line"
9 done
10
11 echo $input | sh $GIT_DIR/hooks/post-receive-email
12 echo $input | sh $GIT_DIR/hooks/post-receive-trac
13