[Doxygen] Fix dirty repo detection.

This commit is contained in:
Peter D. Barnes, Jr.
2015-07-22 17:10:15 -07:00
parent 9e71fc449f
commit 62f72a7048

View File

@@ -153,7 +153,7 @@ else
version=`hg log -r tip --template '{node|short}'`
# Check for uncommitted changes
hg summary | grep -q 'commit: (clean)'
if [ ! $? ] ; then
if [ $? ] ; then
say "beyond latest tag, last commit: $version, dirty"
dirty="(+)"
else