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/10/06 09:22:17 UTC

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

Author: donaldp
Date: Sun Oct  6 07:22:16 2013
New Revision: 1529578

URL: http://svn.apache.org/r1529578
Log:
Subversion 1.8 seems to have a problem if you force add from external directory that is also a .svn repository so cd into the site directory to perform the action

Modified:
    buildr/trunk/rakelib/doc.rake

Modified: buildr/trunk/rakelib/doc.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/doc.rake?rev=1529578&r1=1529577&r2=1529578&view=diff
==============================================================================
--- buildr/trunk/rakelib/doc.rake (original)
+++ buildr/trunk/rakelib/doc.rake Sun Oct  6 07:22:16 2013
@@ -109,7 +109,9 @@ task 'publish-doc' => %w(buildr.pdf _sit
 end
 
 task 'publish-site-svn' do
-  sh 'svn', 'add', '--force', 'site'
+  cd 'site'
+  sh 'svn', 'add', '--force', '.'
+  cd '..'
   sh 'svn', 'commit', 'site', '-m', 'Publish latest site'
 end