Skip to content

Commit d977938

Browse files
committed
Another build fix after r113067. Close the zipfile after extracting all files so that we can remove it.
* BuildSlaveSupport/built-product-archive: (unzipArchive): Canonical link: https://commits.webkit.org/100442@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@113094 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 41e2c10 commit d977938

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

Tools/BuildSlaveSupport/built-product-archive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ def unzipArchive(directoryToExtractTo, configuration):
185185
elif sys.platform == 'win32':
186186
archive = zipfile.ZipFile(archiveFile, "r")
187187
archive.extractall(directoryToExtractTo)
188+
archive.close()
188189

189190
os.unlink(archiveFile)
190191

Tools/ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2012-04-03 Ryosuke Niwa <rniwa@webkit.org>
2+
3+
Another build fix after r113067. Close the zipfile after extracting all files so that we can remove it.
4+
5+
* BuildSlaveSupport/built-product-archive:
6+
(unzipArchive):
7+
18
2012-04-03 Ojan Vafai <ojan@chromium.org>
29

310
Give more human friendly error message when builders fail to load or have stale data.

0 commit comments

Comments
 (0)