summaryrefslogtreecommitdiff
path: root/unclean.d
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2008-02-21 00:07:40 +0100
committerJoey Hess <joey@kodama.kitenet.net>2008-02-29 15:12:31 -0500
commitc1b152c745c86db1138c3e38d1539baf417c98c3 (patch)
tree081b3c411b69208dec544d33fde3b44d58b77ac8 /unclean.d
parent28c96f6a575021fa8d93f7bba79ffcdb2027d4e1 (diff)
use git ls-files instead of git status
git status is a porcelain command and should not be used from scripts just to check if the working directory is clean or not.
Diffstat (limited to 'unclean.d')
-rwxr-xr-xunclean.d/50test2
1 files changed, 1 insertions, 1 deletions
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