diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-09-26 11:08:22 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-09-26 11:08:22 -0400 |
commit | 86e57671dd21078215505202ef8aa2141d10fb9c (patch) | |
tree | 340e7a7328ff02949e120b402250279ae07690a6 /doc | |
parent | 096f9def0f599e527d97bb979f7cafbc87dcddc6 (diff) |
[check-*.sh] Redirect error reports to stderr
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/public/check-doc-coverage.sh | 6 |
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 |