diff options
author | Benjamin C Meyer <ben@meyerhome.net> | 2012-02-13 03:31:37 -0800 |
---|---|---|
committer | Benjamin C Meyer <ben@meyerhome.net> | 2012-02-13 03:31:37 -0800 |
commit | e266763f5a193c60f5c77403d2006ef5e642c4f2 (patch) | |
tree | f39f6922cb08903310e85cb3829c0e56501636c4 | |
parent | cf6762c598acc2f3c9b89ad09fb869353760e366 (diff) | |
parent | f16902fca34a7ba5d352cdbc4adc31f426c418f8 (diff) | |
download | git-hooks-e266763f5a193c60f5c77403d2006ef5e642c4f2.tar.gz git-hooks-e266763f5a193c60f5c77403d2006ef5e642c4f2.tar.bz2 |
Merge pull request #10 from arikon/master
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 |