diff options
-rwxr-xr-x | autogen.sh | 6 | ||||
m--------- | common | 0 |
2 files changed, 5 insertions, 1 deletions
@@ -37,7 +37,11 @@ fi if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \); then rm -f .git/hooks/pre-commit - ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit + if ! ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit 2> /dev/null + then + echo "Failed to create commit hook symlink, copying instead ..." + cp common/hooks/pre-commit.hook .git/hooks/pre-commit + fi fi # GNU gettext automake support doesn't get along with git. diff --git a/common b/common -Subproject b3199090fa16a545d585a54deaa61b687ac369e +Subproject 86e46630ed8af8d94796859db550a9c3d89c9f6 |