summaryrefslogtreecommitdiff
path: root/pre-commit.d
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-09-28 12:11:06 -0400
committerJoey Hess <joey@kitenet.net>2011-09-28 12:11:06 -0400
commit09e7c045049328cebde375e28ed3ad315c364a90 (patch)
tree945fbbf785d3f88b5ee5b3f92720a9cab0c1e031 /pre-commit.d
parent603dc934a94a5df7d9bd99642df2d88bffea7824 (diff)
Use find -path instead of less portable find -wholename.
Diffstat (limited to 'pre-commit.d')
-rwxr-xr-xpre-commit.d/30store-metadata2
1 files changed, 1 insertions, 1 deletions
diff --git a/pre-commit.d/30store-metadata b/pre-commit.d/30store-metadata
index 76a3d65..d1facd6 100755
--- a/pre-commit.d/30store-metadata
+++ b/pre-commit.d/30store-metadata
@@ -56,7 +56,7 @@ generate_metadata() {
# (Note that when using this, the find expression must end with
# -print or -exec, else the excluded directories will actually be
# printed!)
- NOVCS='. -wholename ./.git -prune -o -wholename ./.bzr -prune -o -wholename ./.hg -prune -o -wholename ./_darcs -prune -o'
+ NOVCS='. -path ./.git -prune -o -path ./.bzr -prune -o -path ./.hg -prune -o -path ./_darcs -prune -o'
# Keep the sort order the same at all times.
LC_COLLATE=C