Re: http://maven.apache.org/developers/release/releasing.html step 6 permission fixing

2008-10-11 Thread Barrie Treloar
On Sun, Oct 12, 2008 at 1:28 AM, Hervé BOUTEMY <[EMAIL PROTECTED]> wrote: >> find . -type d -exec chmod a+rx {} \; >> find . -type d -exec chmod g+w {} \; >> find . -type f -exec chmod 664 {} \; >> >> Can't this be replaced with >> >> chmod -R a+rX,g+w,o-w /www/maven.apache.org/plugins/maven-XXX-pl

Re: http://maven.apache.org/developers/release/releasing.html step 6 permission fixing

2008-10-11 Thread Hervé BOUTEMY
+1 easier and more efficient Le lundi 06 octobre 2008, Barrie Treloar a écrit : > Verify/change folder permissions to 0775 and files permissions to 0664 > i.e.: > > find . -type d -exec chmod a+rx {} \; > find . -type d -exec chmod g+w {} \; > find . -type f -exec chmod 664 {} \; > > Can't this be

http://maven.apache.org/developers/release/releasing.html step 6 permission fixing

2008-10-06 Thread Barrie Treloar
Verify/change folder permissions to 0775 and files permissions to 0664 i.e.: find . -type d -exec chmod a+rx {} \; find . -type d -exec chmod g+w {} \; find . -type f -exec chmod 664 {} \; Can't this be replaced with chmod -R a+rX,g+w,o-w /www/maven.apache.org/plugins/maven-XXX-plugin-Y.Z -