Add verbose print when deleting zip files

This commit is contained in:
Jukka Jylanki
2017-03-23 22:48:05 +02:00
parent fbd2fc1345
commit 01610eebb4

1
emsdk
View File

@@ -1270,6 +1270,7 @@ class Tool:
if url.endswith('zip') or url.endswith('.tar') or url.endswith('.gz'):
file_name = url.split('/')[-1]
tempzipfile = os.path.join('zips/', file_name)
if VERBOSE: print("Deleting temporary zip file " + tempzipfile)
rmfile(tempzipfile)
def uninstall(self):