Fix unzip() handling of --strip 1 implementation.

This commit is contained in:
Jukka Jylänki
2017-01-13 02:12:44 +02:00
parent 37cc890db8
commit 4a2a1fa62b

5
emsdk
View File

@@ -328,7 +328,10 @@ def unzip(source_filename, dest_dir, unpack_even_if_exists=False):
if common_subdir == None: if common_subdir == None:
common_subdir = words[0] common_subdir = words[0]
elif common_subdir != words[0]: elif common_subdir != words[0]:
common_subdir = '' common_subdir = None
break
else:
common_subdir = None
break break
unzip_to_dir = dest_dir unzip_to_dir = dest_dir