* Use git status instead of git-status (missed this one before).
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 15 Jan 2008 19:25:53 +0000 (14:25 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 15 Jan 2008 19:25:53 +0000 (14:25 -0500)
debian/changelog
unclean.d/50test

index 4a2de5115b7140cbbb583169c1301230bc25d10f..0769d9a6176d1554d5835483e3037e0b13ffe534 100644 (file)
@@ -10,6 +10,7 @@ etckeeper (0.10) UNRELEASED; urgency=low
   * Don't commit in post-install.d if there are no uncommitted changes.
   * Add preinst code to remove old post-install.d scripts.
   * German debconf translation. Closes: #460940, #458751
+  * Use git status instead of git-status (missed this one before).
 
  -- Joey Hess <joeyh@debian.org>  Tue, 15 Jan 2008 13:20:29 -0500
 
index 04958154e156fb56defe8b9eba020e4d7380fb7a..409d67480f2765497d88a4e0e86524b3d623b036 100755 (executable)
@@ -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 ] && ! LANG=C git status 2>&1 | grep -q "working directory clean"
 elif [ "$VCS" = hg ]; then
        [ -d .hg ] && ! hg status 2>&1 | wc -l | grep -q "^0$"
 fi