Author: hadrian
Date: Thu Feb 5 12:13:20 2009
New Revision: 741086
URL: http://svn.apache.org/viewvc?rev=741086&view=rev
Log:
Remove permission setting altogether.
Modified:
activemq/scripts/copy_released_xsd.py
activemq/scripts/copy_snapshot_xsd.py
Modified: activemq/scripts/copy_released_xsd.py
URL:
http://svn.apache.org/viewvc/activemq/scripts/copy_released_xsd.py?rev=741086&r1=741085&r2=741086&view=diff
==============================================================================
--- activemq/scripts/copy_released_xsd.py (original)
+++ activemq/scripts/copy_released_xsd.py Thu Feb 5 12:13:20 2009
@@ -31,7 +31,6 @@
destfile = os.path.join(root, target)
shutil.copyfile(srcfile,destfile)
- os.chmod(destfile, 0664)
def main():
if len(sys.argv) < 3:
Modified: activemq/scripts/copy_snapshot_xsd.py
URL:
http://svn.apache.org/viewvc/activemq/scripts/copy_snapshot_xsd.py?rev=741086&r1=741085&r2=741086&view=diff
==============================================================================
--- activemq/scripts/copy_snapshot_xsd.py (original)
+++ activemq/scripts/copy_snapshot_xsd.py Thu Feb 5 12:13:20 2009
@@ -29,7 +29,6 @@
srcfile= os.path.join(root,filename)
destfile = os.path.join(dest,'-'.join(list))
shutil.copyfile(srcfile,destfile)
- os.chmod(destfile, 0664)
def main():