[pypy-commit] pypy release-2.0-beta2: fix those tests (how it have ever worked?)

fijal noreply at buildbot.pypy.org
Fri Apr 5 11:23:41 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: release-2.0-beta2
Changeset: r63045:fa07639d3d4e
Date: 2013-04-05 11:23 +0200
http://bitbucket.org/pypy/pypy/changeset/fa07639d3d4e/

Log:	fix those tests (how it have ever worked?)

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -43,6 +43,7 @@
 def fix_permissions(basedir):
     if sys.platform != 'win32':
         os.system("chmod -R a+rX %s" % basedir)
+        os.system("chmod -R g-w %s" % basedir)
 
 def package(basedir, name='pypy-nightly', rename_pypy_c='pypy',
             copy_to_dir = None, override_pypy_c = None, nostrip=False):


More information about the pypy-commit mailing list