aboutsummaryrefslogtreecommitdiff
path: root/git-hooks
diff options
context:
space:
mode:
authorBenjamin C Meyer <ben@meyerhome.net>2012-01-25 00:10:16 -0500
committerBenjamin C Meyer <ben@meyerhome.net>2012-01-25 00:39:12 -0500
commit745105dd3208e9dcfb1e30f18844d67360f01d37 (patch)
tree142b2f1e489ca05f20a7275ca30fa51cfb8fee99 /git-hooks
parentc92277bf74855ebb79f8662aa8ce9a2a3383168b (diff)
downloadgit-hooks-745105dd3208e9dcfb1e30f18844d67360f01d37.tar.gz
git-hooks-745105dd3208e9dcfb1e30f18844d67360f01d37.tar.bz2
Fix whitespace errors introduced by
7502217953a8e8e5b56f0a531a16cfc14b825e82 Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
Diffstat (limited to 'git-hooks')
-rwxr-xr-xgit-hooks4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-hooks b/git-hooks
index d1b1f6e..3523c1b 100755
--- a/git-hooks
+++ b/git-hooks
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Copyright (c) 2010-2011, Benjamin C. Meyer <ben@meyerhome.net>
+# Copyright (c) 2010-2012, Benjamin C. Meyer <ben@meyerhome.net>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -43,7 +43,7 @@ function hook_dirs
function list_hooks_in_dir
{
- if [[ $OSTYPE =~ 'darwin' ]] ; then
+ if [[ $OSTYPE =~ 'darwin' ]] ; then
find "${1}/" -type f 2>/dev/null | grep -v "^.$" | sort
else
find "${1}/" -executable -type f 2>/dev/null | grep -v "^.$" | sort -V