blob: 6829beca7b2628427672dcfb317516f38d1f8e3a (
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
|