print warning if uicb not documented

This commit is contained in:
Julien Danjou 2008-01-16 07:57:12 +01:00
parent 135c418275
commit 3b708f2d09
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ do
do do
shortname=$(echo $uicb | cut -d _ -f2-) shortname=$(echo $uicb | cut -d _ -f2-)
echo " {\"$shortname\", $uicb}," echo " {\"$shortname\", $uicb},"
grep -q "\*$shortname\*" awesomerc.1.txt || \
echo " WARNING: $uicb NOT documented" >&2
done done
done done