From 8c933a0c55312546e24d0214d3a63fb7e568e644 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 14 Apr 2010 15:36:12 -0400 Subject: more find portability fix --- debian/changelog | 1 + pre-commit.d/20warn-special-file | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index db34c2f..927786c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ etckeeper (0.44) UNRELEASED; urgency=low * Avoid using hostname -f, since on Solaris that sets the hostname to -f. Yay, Unix portability! (Instead, use dnsdomainname if available, and otherwise, fall back to the unqualified hostname.) + * Other portability fixes for non-GNU tools and OS X. Thanks, Neil Mayhew. -- Joey Hess Sun, 21 Feb 2010 13:30:33 -0500 diff --git a/pre-commit.d/20warn-special-file b/pre-commit.d/20warn-special-file index 665a3ce..f246fb1 100755 --- a/pre-commit.d/20warn-special-file +++ b/pre-commit.d/20warn-special-file @@ -2,7 +2,7 @@ set -e 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 + 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 -- cgit v1.2.3