From cd906c21f8051aa4cd6442f014c8280ae0c9d9f9 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 30 Jan 2009 08:53:06 +0100 Subject: [PATCH] Use a symbolic link for the pre-commit client-side hook --- autogen.sh | 6 +++--- common | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index 06951ba..5b6bf93 100755 --- a/autogen.sh +++ b/autogen.sh @@ -23,10 +23,10 @@ fi . common/gst-autogen.sh # install pre-commit hook for doing clean commits -if test ! -x .git/hooks/pre-commit; +if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \); then - cp common/hooks/pre-commit.hook .git/hooks/pre-commit - chmod +x .git/hooks/pre-commit + rm -f .git/hooks/pre-commit + ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit fi diff --git a/common b/common index 3f4e997..f7bd42d 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 3f4e9974603807e7615c3a6b8821542abce0be19 +Subproject commit f7bd42d4fa7f9b976fe5e697ff914e25f25e8853 -- 2.7.4