kopia lustrzana https://github.com/espressif/esp-idf
tools: idf_tools.py: add support for .tar.xz archives
rodzic
59f6087b55
commit
57a32a8615
|
@ -295,6 +295,8 @@ def unpack(filename, destination): # type: (str, str) -> None
|
|||
info('Extracting {0} to {1}'.format(filename, destination))
|
||||
if filename.endswith(('.tar.gz', '.tgz')):
|
||||
archive_obj = tarfile.open(filename, 'r:gz') # type: Union[TarFile, ZipFile]
|
||||
elif filename.endswith(('.tar.xz')):
|
||||
archive_obj = tarfile.open(filename, 'r:xz')
|
||||
elif filename.endswith('zip'):
|
||||
archive_obj = ZipFile(filename)
|
||||
else:
|
||||
|
|
Ładowanie…
Reference in New Issue