at master 475 B view raw
1diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py 2index caa7285..ad666ac 100644 3--- a/Lib/venv/__init__.py 4+++ b/Lib/venv/__init__.py 5@@ -379,7 +379,7 @@ class EnvBuilder: 6 if data is not None: 7 with open(dstfile, 'wb') as f: 8 f.write(data) 9- shutil.copymode(srcfile, dstfile) 10+ os.chmod(dstfile, 0o644) 11 12 13 def create(env_dir, system_site_packages=False, clear=False,