diff options
Diffstat (limited to 'util/git-hooks/install.sh')
-rwxr-xr-x | util/git-hooks/install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/git-hooks/install.sh b/util/git-hooks/install.sh index bc90e379..d557c2f8 100755 --- a/util/git-hooks/install.sh +++ b/util/git-hooks/install.sh @@ -14,6 +14,7 @@ for h in $hooks; do if [ -e "${dst}$h" ]; then mv "${dst}$h" "${dst}$h.local" fi - ln -s "$(git rev-parse --prefix $(git rev-parse --git-path hooks/) --show-cdup)${src}wrapper.sh" "${dst}$h" + ln -s "$(git rev-parse --prefix $(git rev-parse --git-path hooks/) --show-cdup)${src}wrapper.sh" \ + "${dst}$h" fi done |