diff options
author | Sergey Belov <arikon@yandex-team.ru> | 2012-02-13 10:59:40 +0200 |
---|---|---|
committer | Sergey Belov <arikon@yandex-team.ru> | 2012-02-13 10:59:40 +0200 |
commit | f16902fca34a7ba5d352cdbc4adc31f426c418f8 (patch) | |
tree | f39f6922cb08903310e85cb3829c0e56501636c4 | |
parent | cf6762c598acc2f3c9b89ad09fb869353760e366 (diff) | |
download | git-hooks-f16902fca34a7ba5d352cdbc4adc31f426c418f8.tar.gz git-hooks-f16902fca34a7ba5d352cdbc4adc31f426c418f8.tar.bz2 |
Fix icefox/git-hooks#9: -L arg to find must precede path to find from
-rwxr-xr-x | git-hooks | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ function hook_dirs function list_hooks_in_dir { - find "${1}/" -L -perm +111 -type f 2>/dev/null | grep -v "^.$" | sort + find -L "${1}/" -perm +111 -type f 2>/dev/null | grep -v "^.$" | sort } function run_hooks |