You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2009/02/13 18:24:07 UTC

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

Author: assaf
Date: Fri Feb 13 17:24:06 2009
New Revision: 744185

URL: http://svn.apache.org/viewvc?rev=744185&view=rev
Log:
He who last rsynced the site, owns the site. Changing to group permission after the rsync seems to solve that.

Modified:
    buildr/trunk/rakelib/doc.rake

Modified: buildr/trunk/rakelib/doc.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/doc.rake?rev=744185&r1=744184&r2=744185&view=diff
==============================================================================
--- buildr/trunk/rakelib/doc.rake (original)
+++ buildr/trunk/rakelib/doc.rake Fri Feb 13 17:24:06 2009
@@ -94,6 +94,7 @@
     target = "people.apache.org:/www/#{spec.name}.apache.org"
     puts "Uploading new site to #{target} ..."
     sh "rsync --progress --recursive --delete _site/ #{target.inspect}/"
+    sh "ssh people.apache.org chmod -R g+w /www/#{spec.name}.apache.org/*"
     puts "Done"
   end