mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Add support for large zip files in make_distrib.py (issue #1350).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1795 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
		| @@ -17,7 +17,7 @@ import zipfile | ||||
|  | ||||
| def create_archive(input_dir, zip_file): | ||||
|   """ Creates a zip archive of the specified input directory. """ | ||||
|   zf = zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED) | ||||
|   zf = zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED, True) | ||||
|   def addDir(dir): | ||||
|     for f in os.listdir(dir): | ||||
|       full_path = os.path.join(dir, f) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user