diff options
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | unclean.d/50test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/control b/debian/control index 2a8cb30..dd33cef 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Homepage: http://kitenet.net/~joey/code/etckeeper/ Package: etckeeper Architecture: all Section: admin -Depends: metastore, git-core (>= 1:1.5.3.4) | mercurial, ${misc:Depends} +Depends: metastore, git-core (>= 1:1.5.4) | mercurial, ${misc:Depends} Description: store /etc in git or mercurial The etckeeper program is a tool to let /etc be stored in a git or mercurial repository. It hooks into APT to automatically commit changes made to /etc diff --git a/unclean.d/50test b/unclean.d/50test index 409d674..ef8ea93 100755 --- a/unclean.d/50test +++ b/unclean.d/50test @@ -2,7 +2,7 @@ set -e if [ "$VCS" = git ]; then - [ -d .git ] && ! LANG=C git status 2>&1 | grep -q "working directory clean" + [ -d .git ] && [ -n "`git-ls-files --modified --deleted --others --exclude-standard`" ] elif [ "$VCS" = hg ]; then [ -d .hg ] && ! hg status 2>&1 | wc -l | grep -q "^0$" fi |