diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | pre-commit.d/20warn-special-file | 2 |
2 files changed, 2 insertions, 1 deletions
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 <joeyh@debian.org> 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 |