Author: hadrian
Date: Thu Feb  5 12:07:31 2009
New Revision: 741083

URL: http://svn.apache.org/viewvc?rev=741083&view=rev
Log:
Workaroud for permission setting problem.

Modified:
    activemq/scripts/copy_released.py
    activemq/scripts/copy_snapshot.py

Modified: activemq/scripts/copy_released.py
URL: 
http://svn.apache.org/viewvc/activemq/scripts/copy_released.py?rev=741083&r1=741082&r2=741083&view=diff
==============================================================================
--- activemq/scripts/copy_released.py (original)
+++ activemq/scripts/copy_released.py Thu Feb  5 12:07:31 2009
@@ -25,7 +25,6 @@
         srcfile= os.path.join(root,filename)
         destfile = os.path.join(dest,filename)
         shutil.copyfile(srcfile,destfile)
-        os.chmod(destfile, 0664)
         # disable the output
         # print 'copy %s to %s' %(srcfile, destfile);
 

Modified: activemq/scripts/copy_snapshot.py
URL: 
http://svn.apache.org/viewvc/activemq/scripts/copy_snapshot.py?rev=741083&r1=741082&r2=741083&view=diff
==============================================================================
--- activemq/scripts/copy_snapshot.py (original)
+++ activemq/scripts/copy_snapshot.py Thu Feb  5 12:07:31 2009
@@ -32,7 +32,6 @@
         srcfile= os.path.join(root,filename)
         destfile = os.path.join(dest,'-'.join(list))
         shutil.copyfile(srcfile,destfile)
-        os.chmod(destfile, 0664)
         # disable the output
         # print 'copy %s to %s' %(srcfile, destfile);
 


Reply via email to