Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates > by-pkgid > ba213f683cae8d0272ca2205c8493587 > files > 39

etckeeper-0.54-1.fc13.noarch.rpm

#!/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>/dev/null | wc -l | grep -q "^0$"
elif [ "$VCS" = darcs ]; then
	[ -d _darcs ] && darcs whatsnew -l >/dev/null
fi