You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/11/01 09:47:10 UTC

svn commit: r1537852 - /buildr/trunk/rakelib/doc.rake

Author: donaldp
Date: Fri Nov  1 08:47:10 2013
New Revision: 1537852

URL: http://svn.apache.org/r1537852
Log:
Move the clobber task outside the catch block and add a few directories to the list removed

Modified:
    buildr/trunk/rakelib/doc.rake

Modified: buildr/trunk/rakelib/doc.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/doc.rake?rev=1537852&r1=1537851&r2=1537852&view=diff
==============================================================================
--- buildr/trunk/rakelib/doc.rake (original)
+++ buildr/trunk/rakelib/doc.rake Fri Nov  1 08:47:10 2013
@@ -125,15 +125,17 @@ task 'setup-local-site-svn' do
   end
 end
 
+rescue Exception => e
+# The doc tasks do not work on our CI infrastructure with jruby as the native libraries
+# are not compatible with version of the C++ library we are running there
+end
+
 task 'clobber' do
+  rm_f 'rake/lib'
   rm_rf 'rake'
+  rm_rf 'rdoc'
   rm_rf 'site'
   rm_rf '_site'
   rm_f 'buildr.pdf'
   rm_f 'prince_errors.log'
 end
-
-rescue Exception => e
-# The doc tasks do not work on our CI infrastructure with jruby as the native libraries
-# are not compatible with version of the C++ library we are running there
-end
\ No newline at end of file