summaryrefslogtreecommitdiff
path: root/unclean.d/50test
blob: ef8ea93365f0f6ee9e11ad00cae8c0e748ca6506 (plain)
1
2
3
4
5
6
7
8
#!/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$"
fi