X-Git-Url: https://git.auder.net/?p=valse.git;a=blobdiff_plain;f=hooks%2Fpre-commit;h=bf5d7357a0d7a5d4c222d2a559b399d1baace18a;hp=f9649b36cc649bf71f80fc1f944ecd4d395a6ad8;hb=f2041bb9cbb566da77e11d04318a081dafdd7a5c;hpb=7a56cc1804edcc2bb3ca3e4a8589faf55eb03547 diff --git a/hooks/pre-commit b/hooks/pre-commit index f9649b3..bf5d735 100755 --- a/hooks/pre-commit +++ b/hooks/pre-commit @@ -15,7 +15,7 @@ indent() { fi # loop on modified files - git diff --cached --name-only $against |while read file; + git diff --cached --name-only $against | while read file; do local ext=$(expr "$file" : ".*\(\..*\)") case $ext in @@ -28,10 +28,6 @@ indent() { # Indent the file with `indent' if this is a R file __indent_R() { - if test ! -x "$INDENT" - then - return; - fi if test ! -f $file then return;