cp hook script instead of creating a symlink
authorBarış Metin <Talip-Baris.Metin@sophia.inria.fr>
Tue, 22 Jun 2010 13:22:23 +0000 (15:22 +0200)
committerBarış Metin <Talip-Baris.Metin@sophia.inria.fr>
Tue, 22 Jun 2010 13:22:23 +0000 (15:22 +0200)
scripts/git-check.sh

index a7f2ee5..92fada8 100755 (executable)
@@ -78,7 +78,7 @@ function check_hooks () {
        git=${b}.git
        echo -n "$git "
        # standard version is in /usr/share/doc/git-1.5.5.6/hooks/post-receive-email
-       (cd $git/hooks; [ -h post-receive ] || ln -sf /root/bin/post-receive-email-with-diffs post-receive )
+       (cd $git/hooks; cp -f /root/bin/post-receive-email-with-diffs post-receive )
     done
     echo ""
 }