summaryrefslogtreecommitdiff
path: root/pre-commit.d/20warn-special-file
diff options
context:
space:
mode:
Diffstat (limited to 'pre-commit.d/20warn-special-file')
-rwxr-xr-xpre-commit.d/20warn-special-file4
1 files changed, 2 insertions, 2 deletions
diff --git a/pre-commit.d/20warn-special-file b/pre-commit.d/20warn-special-file
index 5712bc5..665a3ce 100755
--- a/pre-commit.d/20warn-special-file
+++ b/pre-commit.d/20warn-special-file
@@ -1,8 +1,8 @@
#!/bin/sh
set -e
-if [ "$VCS" = git ] || [ "$VCS" = hg ] || [ "$VCS" = bzr ]; then
- special=$(find -not -type d -not -type f -not -type l | grep -v /.git/ | grep -v /.hg/ | grep -v /.bzr/) || true
+if [ "$VCS" = git ] || [ "$VCS" = hg ] || [ "$VCS" = bzr ] || [ "$VCS" = darcs ]; then
+ special=$(find -not -type d -not -type f -not -type l | grep -v '/\(.git\|.hg\|.bzr\|_darcs\)/') || true
if [ -n "$special" ]; then
echo "etckeeper warning: special files could cause problems with $VCS:" >&2
echo "$special" >&2