You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/04/23 06:38:07 UTC

svn commit: r1329059 - /lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py

Author: rmuir
Date: Mon Apr 23 04:38:07 2012
New Revision: 1329059

URL: http://svn.apache.org/viewvc?rev=1329059&view=rev
Log:
print out a message when checkJavadocLinks fails

Modified:
    lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py

Modified: lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py?rev=1329059&r1=1329058&r2=1329059&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py Mon Apr 23 04:38:07 2012
@@ -197,6 +197,8 @@ def checkAll(dirName):
     failures = failures or printed
     
   if failures:
+    print
+    print 'Broken javadocs links were found!'
     sys.exit(1)
   else:
     sys.exit(0)