From 6b9278cd471a0d4c6140069c765662a5ea1de838 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 5 Nov 2016 19:36:20 +0100 Subject: install-git-hooks.sh: Add missing -s to ln Broken in 9efd2db81ccf987a5455e0e4575c7d3f9072870f Signed-off-by: Florian Pritz --- scripts/install-git-hooks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-git-hooks.sh b/scripts/install-git-hooks.sh index fe898c76b..1a4113f8d 100755 --- a/scripts/install-git-hooks.sh +++ b/scripts/install-git-hooks.sh @@ -14,5 +14,5 @@ for hook in $HOOK_NAMES; do # create the symlink, overwriting the file if it exists # probably the only way this would happen is if you're using an old version of git # -- back when the sample hooks were not executable, instead of being named ____.sample - ln -f ../../scripts/hooks-wrapper.sh $HOOK_DIR/$hook + ln -s -f ../../scripts/hooks-wrapper.sh $HOOK_DIR/$hook done -- cgit v1.2.3-24-g4f1b