summaryrefslogtreecommitdiff
path: root/doc/public
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-09-26 11:08:22 -0400
committerBehdad Esfahbod <behdad@behdad.org>2008-09-26 11:08:22 -0400
commit86e57671dd21078215505202ef8aa2141d10fb9c (patch)
tree340e7a7328ff02949e120b402250279ae07690a6 /doc/public
parent096f9def0f599e527d97bb979f7cafbc87dcddc6 (diff)
[check-*.sh] Redirect error reports to stderr
Diffstat (limited to 'doc/public')
-rwxr-xr-xdoc/public/check-doc-coverage.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/public/check-doc-coverage.sh b/doc/public/check-doc-coverage.sh
index 5257c7ac..2898fc58 100755
--- a/doc/public/check-doc-coverage.sh
+++ b/doc/public/check-doc-coverage.sh
@@ -25,7 +25,7 @@ if test -f "$DOC_MODULE-undeclared.txt"; then
cat "$DOC_MODULE-undeclared.txt" 1>&2
stat=1
fi
-fi
+fi >&2
if test -f "$DOC_MODULE-unused.txt"; then
unused=`cat "$DOC_MODULE-unused.txt"`
if test -n "$unused"; then
@@ -33,7 +33,7 @@ if test -f "$DOC_MODULE-unused.txt"; then
cat "$DOC_MODULE-unused.txt" 1>&2
stat=1
fi
-fi
+fi >&2
if test -f "$DOC_MODULE-undocumented.txt"; then
if grep '^0 symbols incomplete' "$DOC_MODULE-undocumented.txt" >/dev/null &&
grep '^0 not documented' "$DOC_MODULE-undocumented.txt" >/dev/null; then
@@ -43,6 +43,6 @@ if test -f "$DOC_MODULE-undocumented.txt"; then
cat "$DOC_MODULE-undocumented.txt" 1>&2
stat=1
fi
-fi
+fi >&2
exit $stat