summaryrefslogtreecommitdiff
path: root/unclean.d/50test
blob: f260f36f6f68d97898fe4dabd031d4e26bd0e716 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

if [ "$VCS" = git ]; then
	[ -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$"
elif [ "$VCS" = bzr ]; then
	[ -d .bzr ] && ! bzr status 2>&1 | wc -l | grep -q "^0$"
fi